summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenton Cockburn <kanielc@gmail.com>2014-11-29 22:49:01 -0500
committerDenton Cockburn <kanielc@gmail.com>2014-11-30 07:42:19 -0500
commitd3f8182b9ee84258f274e41a67ef1ba73e4371ff (patch)
tree191ee67e13ef2a2c4e11d66a18be7423cb3a1b96
parentd34388c1e8fad289a6198b127c6ae92c296d9246 (diff)
downloadscala-d3f8182b9ee84258f274e41a67ef1ba73e4371ff.tar.gz
scala-d3f8182b9ee84258f274e41a67ef1ba73e4371ff.tar.bz2
scala-d3f8182b9ee84258f274e41a67ef1ba73e4371ff.zip
SI:7988 - scala.collection.JavaConverters spelling mistake
Fixed typo and cleaned up the grammar in the paragraph
-rwxr-xr-xsrc/library/scala/collection/JavaConverters.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/JavaConverters.scala b/src/library/scala/collection/JavaConverters.scala
index a4fa58b13c..875f6e1c02 100755
--- a/src/library/scala/collection/JavaConverters.scala
+++ b/src/library/scala/collection/JavaConverters.scala
@@ -37,8 +37,8 @@ import convert._
* val sl2 : scala.collection.mutable.Buffer[Int] = jl.asScala
* assert(sl eq sl2)
* }}}
- * The following conversions also are supported, but the
- * direction Scala to Java is done my a more specifically named method:
+ * The following conversions are also supported, but the
+ * direction from Scala to Java is done by the more specifically named methods:
* `asJavaCollection`, `asJavaEnumeration`, `asJavaDictionary`.
*
* - `scala.collection.Iterable` <=> `java.util.Collection`