Skip to content

Commit bf67516

Browse files
committed
MirroredMonoType -> MirroredType in comment
1 parent ddb0c4c commit bf67516

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compiler/src/dotty/tools/dotc/typer/Implicits.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ trait Implicits { self: Typer =>
881881
ref.withSpan(span)
882882
}
883883

884-
/** An implied instance for a type of the form `Mirror.Product { type MirroredMonoType = T }`
884+
/** An implied instance for a type of the form `Mirror.Product { type MirroredType = T }`
885885
* where `T` is a generic product type or a case object or an enum case.
886886
*/
887887
lazy val synthesizedProductMirror: SpecialHandler =
@@ -942,7 +942,7 @@ trait Implicits { self: Typer =>
942942
}
943943
}
944944

945-
/** An implied instance for a type of the form `Mirror.Sum { type MirroredMonoType = T }`
945+
/** An implied instance for a type of the form `Mirror.Sum { type MirroredType = T }`
946946
* where `T` is a generic sum type.
947947
*/
948948
lazy val synthesizedSumMirror: SpecialHandler =
@@ -1021,7 +1021,7 @@ trait Implicits { self: Typer =>
10211021
}
10221022
}
10231023

1024-
/** An implied instance for a type of the form `Mirror { type MirroredMonoType = T }`
1024+
/** An implied instance for a type of the form `Mirror { type MirroredType = T }`
10251025
* where `T` is a generic sum or product or singleton type.
10261026
*/
10271027
lazy val synthesizedMirror: SpecialHandler =

0 commit comments

Comments
 (0)