diff options
author | Adam Bard <github@adambard.com> | 2013-10-09 09:22:40 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-10-09 09:22:40 -0700 |
commit | f25350c5e4f83c178a4a76bd6685f9cd3a9b2ee7 (patch) | |
tree | 57ddea8f458629a3816698cdc74bf5fd0d0ca4fe | |
parent | adbbb2dac429886384ff2afd82c947fdc6fea8ff (diff) | |
parent | c9587395d279c538f94e672b154e15f8b9f92e5b (diff) |
Merge pull request #368 from MattKetmo/patch-1
[Scala] Fix typo: forgotten dot
-rw-r--r-- | scala.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scala.html.markdown b/scala.html.markdown index b1b3ecbf..03c1ea76 100644 --- a/scala.html.markdown +++ b/scala.html.markdown @@ -374,7 +374,7 @@ import scala.collection.immutable._ import scala.collection.immutable.{List, Map} // Rename an import using '=>' -import scala.collection.immutable{ List => ImmutableList } +import scala.collection.immutable.{ List => ImmutableList } // Import all classes, except some. The following excludes Map and Set: import scala.collection.immutable.{Map => _, Set => _, _} |