ICU-11276 Fixing typos in numberformatter.h

This commit is contained in:
Shane Carr 2018-08-28 22:36:33 -07:00
parent cc842512fa
commit 7d34740002
No known key found for this signature in database
GPG Key ID: FCED3B24AAB18B5C

View File

@ -1423,7 +1423,8 @@ struct U_I18N_API MacroProps : public UMemory {
/**
* An abstract base class for specifying settings related to number formatting. This class is implemented by
* {@link UnlocalizedNumberFormatter} and {@link LocalizedNumberFormatter}.
* {@link UnlocalizedNumberFormatter} and {@link LocalizedNumberFormatter}. This class is not intended for
* public subclassing.
*/
template<typename Derived>
class U_I18N_API NumberFormatterSettings {
@ -2124,13 +2125,6 @@ class U_I18N_API UnlocalizedNumberFormatter
* Associate the given locale with the number formatter. The locale is used for picking the appropriate symbols,
* formats, and other data for number display.
*
* <p>
* To use the Java default locale, call Locale::getDefault():
*
* <pre>
* NumberFormatter::with(). ... .locale(Locale::getDefault())
* </pre>
*
* @param locale
* The locale to use when loading data for number formatting.
* @return The fluent chain.