docs: replace N-ary times `⨉` with multiplication sign `×` (#18418)

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.
pull/18680/merge
Hyunbin Seo 3 weeks ago committed by GitHub
parent 793e309d4e
commit 44bd73f3e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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}`}
<p>{label}</p>
{/each}

Loading…
Cancel
Save