aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2016-04-18 21:48:49 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2016-06-07 14:18:27 +0200
commitce2b9642c35c15bff80dfc274248f13a5c1a32d1 (patch)
treecc0b53a685d8a48e866a7d75a1ae04b027baa7e7 /src
parent63eb88da7358f3387b499c36422607564aaa0d47 (diff)
downloaddotty-ce2b9642c35c15bff80dfc274248f13a5c1a32d1.tar.gz
dotty-ce2b9642c35c15bff80dfc274248f13a5c1a32d1.tar.bz2
dotty-ce2b9642c35c15bff80dfc274248f13a5c1a32d1.zip
Fix type in SymDenotations.
Diffstat (limited to 'src')
-rw-r--r--src/dotty/tools/dotc/core/SymDenotations.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/SymDenotations.scala b/src/dotty/tools/dotc/core/SymDenotations.scala
index 586e4db7f..d3e373dd0 100644
--- a/src/dotty/tools/dotc/core/SymDenotations.scala
+++ b/src/dotty/tools/dotc/core/SymDenotations.scala
@@ -1001,7 +1001,7 @@ object SymDenotations {
if (!canMatchInheritedSymbols) Iterator.empty
else overriddenFromType(owner.info)
- /** Returns all all matching symbols defined in parents of the selftype. */
+ /** Returns all matching symbols defined in parents of the selftype. */
final def extendedOverriddenSymbols(implicit ctx: Context): Iterator[Symbol] =
if (!canMatchInheritedSymbols) Iterator.empty
else overriddenFromType(owner.asClass.classInfo.selfType)