aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/transform/ParamForwarding.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-28 11:38:30 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-28 11:38:30 +0200
commit25b7a16700120910dee828d8e745df6400ba01d0 (patch)
tree6da352d86089d3e5f58b5d21c9cc0478f392a324 /src/dotty/tools/dotc/transform/ParamForwarding.scala
parenta18b3faeda0a33843bb60cb1475c974aff3a1621 (diff)
downloaddotty-25b7a16700120910dee828d8e745df6400ba01d0.tar.gz
dotty-25b7a16700120910dee828d8e745df6400ba01d0.tar.bz2
dotty-25b7a16700120910dee828d8e745df6400ba01d0.zip
Update comments on ParamForwarding and SuperAccessors.
Diffstat (limited to 'src/dotty/tools/dotc/transform/ParamForwarding.scala')
-rw-r--r--src/dotty/tools/dotc/transform/ParamForwarding.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/transform/ParamForwarding.scala b/src/dotty/tools/dotc/transform/ParamForwarding.scala
index 87ecaba07..d017e75a2 100644
--- a/src/dotty/tools/dotc/transform/ParamForwarding.scala
+++ b/src/dotty/tools/dotc/transform/ParamForwarding.scala
@@ -11,7 +11,7 @@ import Contexts._, Types._, Symbols._, Flags._, TypeUtils._, DenotTransformers._
*
* if
* (1) x is forwarded in the supercall to a parameter that's also named `x`
- * (2) the superclass parameter accessor for `x` is accessible from the current class to
+ * (2) the superclass parameter accessor for `x` is accessible from the current class
* change the accessor to
*
* def x: T = super.x.asInstanceOf[T]