From 220dc0aa5a8020cc5286b3896933efa5932f862b Mon Sep 17 00:00:00 2001 From: Evgeny Veretennikov Date: Thu, 26 Dec 2024 12:50:16 +0300 Subject: [PATCH] rm redundant space --- _overviews/scala3-macros/tutorial/macros.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/scala3-macros/tutorial/macros.md b/_overviews/scala3-macros/tutorial/macros.md index 52c7a725d8..1c90c15928 100644 --- a/_overviews/scala3-macros/tutorial/macros.md +++ b/_overviews/scala3-macros/tutorial/macros.md @@ -216,7 +216,7 @@ inline def sumNow(inline nums: Int*): Int = def sumCode(nums: Expr[Seq[Int]])(using Quotes): Expr[Int] = import quotes.reflect.report nums match - case Varargs(numberExprs) => // numberExprs: Seq[Expr[Int]] + case Varargs(numberExprs) => // numberExprs: Seq[Expr[Int]] val numbers: Seq[Int] = numberExprs.map(_.valueOrAbort) Expr(numbers.sum) case _ => report.errorAndAbort(