From 44bd73f3e59f7f9f74ed16bb577d355a71d895f1 Mon Sep 17 00:00:00 2001 From: Hyunbin Seo <47051820+hyunbinseo@users.noreply.github.com> Date: Fri, 21 Aug 2026 06:43:25 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20replace=20N-ary=20times=20`=E2=A8=89`?= =?UTF-8?q?=20with=20multiplication=20sign=20`=C3=97`=20(#18418)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaces the incorrect N-Ary Times Operator `⨉` (U+2A09) with the correct Multiplication Sign `×` (U+00D7) in the box dimension label. Former is intended for mathematical set theory and type theory contexts. For physical dimensions (width × height), `×` is the correct symbol. --- 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}