From 195bb06c8737af8f9db37938066e9a999e505d34 Mon Sep 17 00:00:00 2001 From: Hyunbin Seo <47051820+hyunbinseo@users.noreply.github.com> Date: Fri, 12 Jun 2026 01:39:59 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20replace=20N-ary=20times=20`=E2=A8=89`?= =?UTF-8?q?=20with=20multiplication=20sign=20`=C3=97`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- documentation/docs/03-template-syntax/11-declaration-tags.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/03-template-syntax/11-declaration-tags.md b/documentation/docs/03-template-syntax/11-declaration-tags.md index e0edaf6a38..2ae1214b9c 100644 --- a/documentation/docs/03-template-syntax/11-declaration-tags.md +++ b/documentation/docs/03-template-syntax/11-declaration-tags.md @@ -13,7 +13,7 @@ Declaration tags define local variables inside markup with `const` or `let`: {#each boxes as box} {const area = box.width * box.height} - {const label = `${box.width} ⨉ ${box.height} = ${area}`} + {const label = `${box.width} × ${box.height} = ${area}`}

{label}

{/each}