From 4fb48e29b458e6920c1d3a69484da15d75ad4c19 Mon Sep 17 00:00:00 2001 From: Rich Dougherty Date: Mon, 11 Feb 2013 12:23:14 +1300 Subject: [PATCH] Typo in dataflow docs. Fixes #3028 --- akka-docs/rst/scala/dataflow.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/rst/scala/dataflow.rst b/akka-docs/rst/scala/dataflow.rst index 51080f174e..c03f5fe6cc 100644 --- a/akka-docs/rst/scala/dataflow.rst +++ b/akka-docs/rst/scala/dataflow.rst @@ -5,7 +5,7 @@ Description ----------- Akka implements `Oz-style dataflow concurrency `_ -by using a special API for :ref:`futures-scala` that enables a complimentary way of writing synchronous-looking code that in reality is asynchronous. +by using a special API for :ref:`futures-scala` that enables a complementary way of writing synchronous-looking code that in reality is asynchronous. The benefit of Dataflow concurrency is that it is deterministic; that means that it will always behave the same. If you run it once and it yields output 5 then it will do that **every time**, run it 10 million times - same result.