summaryrefslogtreecommitdiff
path: root/src/library/scala/reflect/base/Mirrors.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/reflect/base/Mirrors.scala')
-rw-r--r--src/library/scala/reflect/base/Mirrors.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/library/scala/reflect/base/Mirrors.scala b/src/library/scala/reflect/base/Mirrors.scala
index 8cb6811dca..e38a3d1cdd 100644
--- a/src/library/scala/reflect/base/Mirrors.scala
+++ b/src/library/scala/reflect/base/Mirrors.scala
@@ -15,9 +15,8 @@ trait Mirrors {
/** The base type of all mirrors of this universe */
type Mirror >: Null <: MirrorOf[self.type]
- /** The roor mirror of this universe. This mirror contains standard Scala classes and types such as `Any`, `AnyRef`, `AnyVal`,
- * `Nothing`, `Null`, and all classes loaded from scala-library. The root package of this mirror contains the root
- * packages of all other mirrors of this universe as members.
+ /** The root mirror of this universe. This mirror contains standard Scala classes and types such as `Any`, `AnyRef`, `AnyVal`,
+ * `Nothing`, `Null`, and all classes loaded from scala-library, which are shared across all mirrors within the enclosing universe.
*/
val rootMirror: Mirror
}