summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2013-07-27 21:32:40 -0700
committerGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2013-07-27 21:32:40 -0700
commitcc288dbf1a27ce9074e2183c7e6ea19501f359f4 (patch)
tree200526d05df25abd4be73dd8950988bf2e30e48b
parentf593364d7b6ebcd7050d7987dc7a5f2d4962f78a (diff)
parent1c68a303fbecb51182539b907e6852e50f5b0c5c (diff)
downloadscala-cc288dbf1a27ce9074e2183c7e6ea19501f359f4.tar.gz
scala-cc288dbf1a27ce9074e2183c7e6ea19501f359f4.tar.bz2
scala-cc288dbf1a27ce9074e2183c7e6ea19501f359f4.zip
Merge pull request #2779 from xuwei-k/Universe-typo
fix typo. s/Universes/Universe
-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
+}