Skip to content

Commit

Permalink
Fix options in examples to match default registry (#770)
Browse files Browse the repository at this point in the history
I found these errors while [commenting](unicode-org/icu#2973 (comment)) on an issue in ICU. Fixing the text for consistency.
  • Loading branch information
aphillips committed Apr 22, 2024
1 parent b27493d commit 0e1304b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/formatting.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ the following steps are taken:
or the value of one of the _options_ for another function.
For example, in
```
.input {$n :number minIntegerDigits=3}
.local $n1 = {$n :number maxFractionDigits=3}
.input {$n :number minimumIntegerDigits=3}
.local $n1 = {$n :number maximumFractionDigits=3}
```
the value bound to `$n` is the
resolved value used as the _operand_
Expand Down Expand Up @@ -262,8 +262,8 @@ the following steps are taken:
> the formatted result of the following message:
>
> ```
> .input {$n :number minIntegerDigits=3}
> .local $n1 = {$n :number maxFractionDigits=3}
> .input {$n :number minimumIntegerDigits=3}
> .local $n1 = {$n :number maximumFractionDigits=3}
> {{$n1}}
> ```
>
Expand Down

0 comments on commit 0e1304b

Please sign in to comment.