]> granicus.if.org Git - icu/commitdiff
ICU-13551 Updating documentation of UNumberSignDisplay enum in ICU4C.
authorShane Carr <shane@unicode.org>
Fri, 9 Feb 2018 00:05:24 +0000 (00:05 +0000)
committerShane Carr <shane@unicode.org>
Fri, 9 Feb 2018 00:05:24 +0000 (00:05 +0000)
X-SVN-Rev: 40874

icu4c/source/i18n/unicode/numberformatter.h

index be4593309e794a54d5b193e8e6932ffd2c30beb7..ac852f27e8eda9cb1124a1a74fee2319c2a8e833 100644 (file)
@@ -253,16 +253,17 @@ typedef enum UGroupingStrategy {
 } UGroupingStrategy;
 
 /**
- * An enum declaring how to denote positive and negative numbers. Example outputs when formatting 123 and -123 in
- * <em>en-US</em>:
+ * An enum declaring how to denote positive and negative numbers. Example outputs when formatting
+ * 123, 0, and -123 in <em>en-US</em>:
  *
- * <p>
  * <ul>
- * <li>AUTO: "123", "-123"
- * <li>ALWAYS: "+123", "-123"
- * <li>NEVER: "123", "123"
- * <li>ACCOUNTING: "$123", "($123)"
- * <li>ACCOUNTING_ALWAYS: "+$123", "($123)"
+ * <li>AUTO: "123", "0", and "-123"
+ * <li>ALWAYS: "+123", "+0", and "-123"
+ * <li>NEVER: "123", "0", and "123"
+ * <li>ACCOUNTING: "$123", "$0", and "($123)"
+ * <li>ACCOUNTING_ALWAYS: "+$123", "+$0", and "($123)"
+ * <li>EXCEPT_ZERO: "+123", "0", and "-123"
+ * <li>ACCOUNTING_EXCEPT_ZERO: "+$123", "$0", and "($123)"
  * </ul>
  *
  * <p>