We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a0bd6c commit ee8d8e1Copy full SHA for ee8d8e1
1 file changed
src/ng/filter/filters.js
@@ -93,7 +93,9 @@ function currencyFilter($locale) {
93
* @param {(number|string)=} fractionSize Number of decimal places to round the number to.
94
* If this is not provided then the fraction size is computed from the current locale's number
95
* formatting pattern. In the case of the default locale, it will be 3.
96
- * @returns {string} Number rounded to fractionSize and places a “,” after each third digit.
+ * @returns {string} Number rounded to `fractionSize` appropriately formatted based on the current
97
+ * locale (e.g., in the en_US locale it will have "." as the decimal separator and
98
+ * include "," group separators after each third digit).
99
*
100
* @example
101
<example module="numberFilterExample">
0 commit comments