diff --git a/src/ng/filter/filters.js b/src/ng/filter/filters.js
index d903df836e7a..a4f6c071bd75 100644
--- a/src/ng/filter/filters.js
+++ b/src/ng/filter/filters.js
@@ -7,10 +7,13 @@
*
* @description
* Formats a number as a currency (ie $1,234.56). When no currency symbol is provided, default
- * symbol for current locale is used.
+ * symbol for current locale is used. When no decimal places to round to is provided, the
+ * default value is 2. Note that this can take negative values, which can be used to round to
+ * whole numbers.
*
* @param {number} amount Input to filter.
* @param {string=} symbol Currency symbol or identifier to be displayed.
+ * @param {number} decimal Number of decimal places to round to.
* @returns {string} Formatted number.
*
*
@@ -26,7 +29,7 @@