summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJames Iry <jamesiry@gmail.com>2013-02-22 09:02:30 -0800
committerJames Iry <jamesiry@gmail.com>2013-02-22 09:02:30 -0800
commit24860b68ee4a2b4e9e999c7fedede27db3823f26 (patch)
tree48d90ab9a308d57585c10be82fc97476aa2b4ce3 /src
parentc58838605b390f21134c67c6106713df2f4af848 (diff)
parentb20e28832d0fc509cbb2fcfe043eda66b7fb9e6c (diff)
downloadscala-24860b68ee4a2b4e9e999c7fedede27db3823f26.tar.gz
scala-24860b68ee4a2b4e9e999c7fedede27db3823f26.tar.bz2
scala-24860b68ee4a2b4e9e999c7fedede27db3823f26.zip
Merge pull request #2143 from heathermiller/docs/linearization-typo
Fixed error in reflection API docs about linearization order on method baseClasses
Diffstat (limited to 'src')
-rw-r--r--src/reflect/scala/reflect/api/Symbols.scala2
-rw-r--r--src/reflect/scala/reflect/api/Types.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/reflect/scala/reflect/api/Symbols.scala b/src/reflect/scala/reflect/api/Symbols.scala
index b53c700701..c8e03f1d91 100644
--- a/src/reflect/scala/reflect/api/Symbols.scala
+++ b/src/reflect/scala/reflect/api/Symbols.scala
@@ -946,7 +946,7 @@ trait Symbols { self: Universe =>
def knownDirectSubclasses: Set[Symbol]
/** The list of all base classes of this type (including its own typeSymbol)
- * in reverse linearization order, starting with the class itself and ending
+ * in linearization order, starting with the class itself and ending
* in class Any.
*
* @group Class
diff --git a/src/reflect/scala/reflect/api/Types.scala b/src/reflect/scala/reflect/api/Types.scala
index 143438b8f5..72163ef0e9 100644
--- a/src/reflect/scala/reflect/api/Types.scala
+++ b/src/reflect/scala/reflect/api/Types.scala
@@ -149,7 +149,7 @@ trait Types { self: Universe =>
def =:= (that: Type): Boolean
/** The list of all base classes of this type (including its own typeSymbol)
- * in reverse linearization order, starting with the class itself and ending
+ * in linearization order, starting with the class itself and ending
* in class Any.
*/
def baseClasses: List[Symbol]