From 0e1304b9e22d527998ee484cc69861a3cb2cb7e2 Mon Sep 17 00:00:00 2001 From: Addison Phillips Date: Mon, 22 Apr 2024 09:43:25 -0700 Subject: [PATCH] Fix options in examples to match default registry (#770) I found these errors while [commenting](https://github.com/unicode-org/icu/pull/2973#issuecomment-2066918765) on an issue in ICU. Fixing the text for consistency. --- spec/formatting.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/formatting.md b/spec/formatting.md index af9c498f..48235d4c 100644 --- a/spec/formatting.md +++ b/spec/formatting.md @@ -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_ @@ -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}} > ``` >