Skip to content

Commit c921547

Browse files
committed
Fix typo
1 parent b241c0b commit c921547

File tree

2 files changed

+2
-2
lines changed
  • library

2 files changed

+2
-2
lines changed

library/src-bootstrapped/scala/compiletime/Type.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import scala.quoted._
44

55
object Type {
66

7-
/** A term quote is desugared by the compiler into a call to this method */
7+
/** A type quote is desugared by the compiler into a call to this method */
88
def apply[T <: AnyKind]: Type[T] =
99
throw new Error("Internal error: this method call should have been replaced by the compiler")
1010

library/src-non-bootstrapped/scala/compiletime/quoted/Type.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import scala.quoted._
44

55
object Type {
66

7-
/** A term quote is desugared by the compiler into a call to this method */
7+
/** A type quote is desugared by the compiler into a call to this method */
88
def apply[T]: Type[T] =
99
throw new Error("Internal error: this method call should have been replaced by the compiler")
1010

0 commit comments

Comments
 (0)