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}