aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2015-05-14 11:18:39 +1000
committerJason Zaugg <jzaugg@gmail.com>2015-05-14 11:18:39 +1000
commit275b2c37dfbba3fa026c3821742c81b1d16e8db2 (patch)
tree5f516c6fb4fae7b842135faca4517a968daee000 /src
parent0fde1ac4607ca26f759c037c43535123f4e7b2d8 (diff)
downloaddotty-275b2c37dfbba3fa026c3821742c81b1d16e8db2.tar.gz
dotty-275b2c37dfbba3fa026c3821742c81b1d16e8db2.tar.bz2
dotty-275b2c37dfbba3fa026c3821742c81b1d16e8db2.zip
Fix parameter name in Scaladoc.
Diffstat (limited to 'src')
-rw-r--r--src/dotty/tools/dotc/ast/Desugar.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/ast/Desugar.scala b/src/dotty/tools/dotc/ast/Desugar.scala
index f7904abc0..ec5519d0f 100644
--- a/src/dotty/tools/dotc/ast/Desugar.scala
+++ b/src/dotty/tools/dotc/ast/Desugar.scala
@@ -872,7 +872,7 @@ object desugar {
* trait <refinement> extends C { this: T1 => type T <: A }
*
* The result of this method is used for validity checking, is thrown away afterwards.
- * @param parentType The type of `parent`
+ * @param parent The type of `parent`
*/
def refinedTypeToClass(parent: tpd.Tree, refinements: List[Tree])(implicit ctx: Context): TypeDef = {
def stripToCore(tp: Type): List[Type] = tp match {