From 5258707855123c2b8e7af93b4c08a72ab64588bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Koz=C5=82owski?= Date: Tue, 5 Jan 2016 18:17:06 +0100 Subject: [PATCH] =doc #19355 fix typo in docs --- akka-docs/rst/scala/futures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/rst/scala/futures.rst b/akka-docs/rst/scala/futures.rst index 60093d9d31..52a665f46e 100644 --- a/akka-docs/rst/scala/futures.rst +++ b/akka-docs/rst/scala/futures.rst @@ -128,7 +128,7 @@ but if 2 or more ``Future``\s are involved ``map`` will not allow you to combine .. includecode:: code/docs/future/FutureDocSpec.scala :include: flat-map -Composing futures using nested combinators it can sometimes become quite complicated and hard read, in these cases using Scala's +Composing futures using nested combinators it can sometimes become quite complicated and hard to read, in these cases using Scala's 'for comprehensions' usually yields more readable code. See next section for examples. If you need to do conditional propagation, you can use ``filter``: