Skip to content

Commit 0e1304b

Browse files
authored
Fix options in examples to match default registry (#770)
I found these errors while [commenting](unicode-org/icu#2973 (comment)) on an issue in ICU. Fixing the text for consistency.
1 parent b27493d commit 0e1304b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/formatting.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ the following steps are taken:
229229
or the value of one of the _options_ for another function.
230230
For example, in
231231
```
232-
.input {$n :number minIntegerDigits=3}
233-
.local $n1 = {$n :number maxFractionDigits=3}
232+
.input {$n :number minimumIntegerDigits=3}
233+
.local $n1 = {$n :number maximumFractionDigits=3}
234234
```
235235
the value bound to `$n` is the
236236
resolved value used as the _operand_
@@ -262,8 +262,8 @@ the following steps are taken:
262262
> the formatted result of the following message:
263263
>
264264
> ```
265-
> .input {$n :number minIntegerDigits=3}
266-
> .local $n1 = {$n :number maxFractionDigits=3}
265+
> .input {$n :number minimumIntegerDigits=3}
266+
> .local $n1 = {$n :number maximumFractionDigits=3}
267267
> {{$n1}}
268268
> ```
269269
>

0 commit comments

Comments
 (0)