mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-05-06 14:58:31 +00:00
Merge pull request #368 from MattKetmo/patch-1
[Scala] Fix typo: forgotten dot
This commit is contained in:
commit
f25350c5e4
@ -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