From 0606a5566ff9568256c51b4173f1c15eb94be807 Mon Sep 17 00:00:00 2001 From: Jisoo Park Date: Mon, 19 May 2014 21:05:02 +0900 Subject: [PATCH] =str #15221 Fix typo in scaladoc --- akka-stream/src/main/scala/akka/stream/javadsl/Flow.scala | 2 +- akka-stream/src/main/scala/akka/stream/scaladsl/Flow.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-stream/src/main/scala/akka/stream/javadsl/Flow.scala b/akka-stream/src/main/scala/akka/stream/javadsl/Flow.scala index 5b210333e2..d48851be88 100644 --- a/akka-stream/src/main/scala/akka/stream/javadsl/Flow.scala +++ b/akka-stream/src/main/scala/akka/stream/javadsl/Flow.scala @@ -173,7 +173,7 @@ abstract class Flow[T] { * * It is possible to keep state in the concrete [[akka.stream.Transformer]] instance with * ordinary instance variables. The [[akka.stream.Transformer]] is executed by an actor and - * therefore you don not have to add any additional thread safety or memory + * therefore you do not have to add any additional thread safety or memory * visibility constructs to access the state from the callback methods. */ def transform[U](transformer: Transformer[T, U]): Flow[U] diff --git a/akka-stream/src/main/scala/akka/stream/scaladsl/Flow.scala b/akka-stream/src/main/scala/akka/stream/scaladsl/Flow.scala index ac3bbc24fb..a824c2d878 100644 --- a/akka-stream/src/main/scala/akka/stream/scaladsl/Flow.scala +++ b/akka-stream/src/main/scala/akka/stream/scaladsl/Flow.scala @@ -170,7 +170,7 @@ trait Flow[+T] { * * It is possible to keep state in the concrete [[akka.stream.Transformer]] instance with * ordinary instance variables. The [[akka.stream.Transformer]] is executed by an actor and - * therefore you don not have to add any additional thread safety or memory + * therefore you do not have to add any additional thread safety or memory * visibility constructs to access the state from the callback methods. */ def transform[U](transformer: Transformer[T, U]): Flow[U]