]> granicus.if.org Git - icu/commitdiff
ICU-21983 Fix fraction precision skeleton
authorfloratmin <44496574+floratmin@users.noreply.github.com>
Wed, 6 Apr 2022 15:56:20 +0000 (15:56 +0000)
committerShane F. Carr <shane@unicode.org>
Fri, 9 Sep 2022 03:17:48 +0000 (20:17 -0700)
See #2058

docs/userguide/format_parse/numbers/skeletons.md

index 3ef41c2834d74495dab6929863c36853ba527e62..279a2207be1f2eaf71f5ae42732571b71f30ad3e 100644 (file)
@@ -231,7 +231,7 @@ the API docs for UNumberRoundingPriority.
 | `.##/@@@r` | Same as above, but pad trailing zeros <br/> to at least 3 significant digits | `Precision::maxFraction(2)` <br/> `.withSignificantDigits(3, 3, RELAXED)` |
 | `.00/@##` | Exactly 2 fraction digits, but do not <br/> display more than 3 significant digits | `Precision::fixedFraction(2)` <br/> `.withMaxDigits(3)` |
 | `.00/@##s` | Same as above | `Precision::fixedFraction(2)` <br/> `.withSignificantDigits(1, 3, STRICT)` |
-| `.00/@##s` | Same as above, but pad trailing zeros <br/> to at least 3 significant digits | `Precision::fixedFraction(2)` <br/> `.withSignificantDigits(3, 3, STRICT)` |
+| `.00/@@@s` | Same as above, but pad trailing zeros <br/> to at least 3 significant digits | `Precision::fixedFraction(2)` <br/> `.withSignificantDigits(3, 3, STRICT)` |
 
 Precisely, the option follows the syntax of the significant digits stem (see below),
 but one of the following must be true: