From 302f70cda41912c89ff56677c696c468ff1ba66e Mon Sep 17 00:00:00 2001 From: Jonas Ackermann Date: Mon, 24 May 2021 13:10:21 +0200 Subject: [PATCH] Fix comment typo in Quotes --- library/src/scala/quoted/Quotes.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/src/scala/quoted/Quotes.scala b/library/src/scala/quoted/Quotes.scala index 6ae7bd1af1f7..74c98680d939 100644 --- a/library/src/scala/quoted/Quotes.scala +++ b/library/src/scala/quoted/Quotes.scala @@ -8,7 +8,7 @@ import scala.reflect.TypeTest * Usage: * ```scala * def myExpr[T](using Quotes): Expr[T] = { - * import quotes.relect._ + * import quotes.reflect._ * ... * } * ```