Skip to content

Commit d9ebf0c

Browse files
authored
Merge pull request #3137 from evis/patch-1
rm redundant space
2 parents 618dcee + 220dc0a commit d9ebf0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_overviews/scala3-macros/tutorial/macros.md

Lines changed: 1 addition & 1 deletion
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)