summaryrefslogtreecommitdiff
path: root/src/reflect
diff options
context:
space:
mode:
authorxuwei-k <6b656e6a69@gmail.com>2013-07-27 21:13:21 +0900
committerxuwei-k <6b656e6a69@gmail.com>2013-07-27 21:13:21 +0900
commit1c68a303fbecb51182539b907e6852e50f5b0c5c (patch)
tree200526d05df25abd4be73dd8950988bf2e30e48b /src/reflect
parentf593364d7b6ebcd7050d7987dc7a5f2d4962f78a (diff)
downloadscala-1c68a303fbecb51182539b907e6852e50f5b0c5c.tar.gz
scala-1c68a303fbecb51182539b907e6852e50f5b0c5c.tar.bz2
scala-1c68a303fbecb51182539b907e6852e50f5b0c5c.zip
fix typo. s/Universes/Universe
Diffstat (limited to 'src/reflect')
-rw-r--r--src/reflect/scala/reflect/api/Importers.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reflect/scala/reflect/api/Importers.scala b/src/reflect/scala/reflect/api/Importers.scala
index e6f314b712..4182b7d0ba 100644
--- a/src/reflect/scala/reflect/api/Importers.scala
+++ b/src/reflect/scala/reflect/api/Importers.scala
@@ -9,7 +9,7 @@ package api
* ''Note: this trait should typically be used only rarely.''
*
* Reflection artifacts, such as [[scala.reflect.api.Symbols Symbols]] and [[scala.reflect.api.Types Types]],
- * are contained in [[scala.reflect.api.Universes Universe]]s. Typically all processing happens
+ * are contained in [[scala.reflect.api.Universe Universe]]s. Typically all processing happens
* within a single `Universe` (e.g. a compile-time macro `Universe` or a runtime reflection `Universe`), but sometimes
* there is a need to migrate artifacts from one `Universe` to another. For example, runtime compilation works by
* importing runtime reflection trees into a runtime compiler universe, compiling the importees and exporting the
@@ -101,4 +101,4 @@ trait Importers { self: Universe =>
*/
def importPosition(pos: from.Position): Position
}
-} \ No newline at end of file
+}