Skip to content

Commit cc288db

Browse files
committed
Merge pull request scala#2779 from xuwei-k/Universe-typo
fix typo. s/Universes/Universe
2 parents f593364 + 1c68a30 commit cc288db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reflect/scala/reflect/api/Importers.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ package api
99
* ''Note: this trait should typically be used only rarely.''
1010
*
1111
* Reflection artifacts, such as [[scala.reflect.api.Symbols Symbols]] and [[scala.reflect.api.Types Types]],
12-
* are contained in [[scala.reflect.api.Universes Universe]]s. Typically all processing happens
12+
* are contained in [[scala.reflect.api.Universe Universe]]s. Typically all processing happens
1313
* within a single `Universe` (e.g. a compile-time macro `Universe` or a runtime reflection `Universe`), but sometimes
1414
* there is a need to migrate artifacts from one `Universe` to another. For example, runtime compilation works by
1515
* importing runtime reflection trees into a runtime compiler universe, compiling the importees and exporting the
@@ -101,4 +101,4 @@ trait Importers { self: Universe =>
101101
*/
102102
def importPosition(pos: from.Position): Position
103103
}
104-
}
104+
}

0 commit comments

Comments
 (0)