mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-27 07:33:57 +00:00
[Scala] Fix typo: forgotten dot
This commit is contained in:
parent
42a2263ab1
commit
c9587395d2
@ -374,7 +374,7 @@ import scala.collection.immutable._
|
|||||||
import scala.collection.immutable.{List, Map}
|
import scala.collection.immutable.{List, Map}
|
||||||
|
|
||||||
// Rename an import using '=>'
|
// 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 all classes, except some. The following excludes Map and Set:
|
||||||
import scala.collection.immutable.{Map => _, Set => _, _}
|
import scala.collection.immutable.{Map => _, Set => _, _}
|
||||||
|
Loading…
Reference in New Issue
Block a user