Skip to content

Commit 220dc0a

Browse files
authored
rm redundant space
1 parent 618dcee commit 220dc0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_overviews/scala3-macros/tutorial/macros.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ inline def sumNow(inline nums: Int*): Int =
216216
def sumCode(nums: Expr[Seq[Int]])(using Quotes): Expr[Int] =
217217
import quotes.reflect.report
218218
nums match
219-
case Varargs(numberExprs) => // numberExprs: Seq[Expr[Int]]
219+
case Varargs(numberExprs) => // numberExprs: Seq[Expr[Int]]
220220
val numbers: Seq[Int] = numberExprs.map(_.valueOrAbort)
221221
Expr(numbers.sum)
222222
case _ => report.errorAndAbort(

0 commit comments

Comments
 (0)