summaryrefslogtreecommitdiffhomepage
path: root/scala.html.markdown
diff options
context:
space:
mode:
authorMatthieu Moquet <matthieu@moquet.net>2013-09-28 15:33:32 +0200
committerMatthieu Moquet <matthieu@moquet.net>2013-09-28 15:33:32 +0200
commitc9587395d279c538f94e672b154e15f8b9f92e5b (patch)
treec0fc8dbe621c74eac6ff2ca83dbf4c01d2080d9a /scala.html.markdown
parent42a2263ab1b2d911f6865975e518da91a3b73e0b (diff)
[Scala] Fix typo: forgotten dot
Diffstat (limited to 'scala.html.markdown')
-rw-r--r--scala.html.markdown2
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 => _, _}