fix the the typo

This commit is contained in:
Patrik Nordwall 2016-03-18 17:06:34 +01:00
parent 53a877d76d
commit 137c4c8b3d
12 changed files with 13 additions and 13 deletions

View file

@ -111,7 +111,7 @@ object Source {
* `ConcurrentModificationException` or other more subtle errors may occur.
*/
def from[O](iterable: java.lang.Iterable[O]): javadsl.Source[O, NotUsed] = {
// this adapter is not immutable if the the underlying java.lang.Iterable is modified
// this adapter is not immutable if the underlying java.lang.Iterable is modified
// but there is not anything we can do to prevent that from happening.
// ConcurrentModificationException will be thrown in some cases.
val scalaIterable = new immutable.Iterable[O] {