We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfcaa10 commit 9bd4097Copy full SHA for 9bd4097
exploration/number-selection.md
@@ -365,12 +365,12 @@ but can cause problems in target locales that the original developer is not cons
365
### Percent Style
366
367
When implementing `style=percent`, the numeric value of the operand
368
-MUST be divided by 100 for the purposes of formatting.
+MUST be multiplied by 100 for the purposes of formatting.
369
370
> For example,
371
> ```
372
-> .local $percent = {1000 :integer style=percent}
373
-> {{This formats as '10%' in the en-US locale: {$percent}}}
+> .local $percent = {1 :integer style=percent}
+> {{This formats as '100%' in the en-US locale: {$percent}}}
374
375
376
### Selection
0 commit comments