diff options
author | Matthieu Moquet <matthieu@moquet.net> | 2013-09-28 15:33:32 +0200 |
---|---|---|
committer | Matthieu Moquet <matthieu@moquet.net> | 2013-09-28 15:33:32 +0200 |
commit | c9587395d279c538f94e672b154e15f8b9f92e5b (patch) | |
tree | c0fc8dbe621c74eac6ff2ca83dbf4c01d2080d9a | |
parent | 42a2263ab1b2d911f6865975e518da91a3b73e0b (diff) |
[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 => _, _} |