summaryrefslogtreecommitdiff
path: root/src/reflect/scala/reflect/api/Types.scala
diff options
context:
space:
mode:
authorHeather Miller <heather.miller@epfl.ch>2013-02-19 22:56:16 +0100
committerHeather Miller <heather.miller@epfl.ch>2013-02-19 22:56:16 +0100
commitb20e28832d0fc509cbb2fcfe043eda66b7fb9e6c (patch)
treea1e4f731ce5f1f328974ec5f8ed53a97b1c38558 /src/reflect/scala/reflect/api/Types.scala
parent5d6e02ee2eb1b454d88d3c3fb41d4715930caa9d (diff)
downloadscala-b20e28832d0fc509cbb2fcfe043eda66b7fb9e6c.tar.gz
scala-b20e28832d0fc509cbb2fcfe043eda66b7fb9e6c.tar.bz2
scala-b20e28832d0fc509cbb2fcfe043eda66b7fb9e6c.zip
Fixed error in reflection API docs about linearization order on method baseClasses
Diffstat (limited to 'src/reflect/scala/reflect/api/Types.scala')
-rw-r--r--src/reflect/scala/reflect/api/Types.scala2
1 files changed, 1 insertions, 1 deletions
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]