diff --git a/lib/utils/settings.html b/lib/utils/settings.html
index 1275c1ce6c..5826dedfbc 100644
--- a/lib/utils/settings.html
+++ b/lib/utils/settings.html
@@ -64,18 +64,18 @@
/**
* A global callback used to sanitize any value before inserting it into the DOM. The callback signature is:
- *
+ *
* Polymer = {
* sanitizeDOMValue: function(value, name, type, node) { ... }
* }
- *
+ *
* Where:
- *
+ *
* `value` is the value to sanitize.
* `name` is the name of an attribute or property (for example, href).
* `type` indicates where the value is being inserted: one of property, attribute, or text.
* `node` is the node where the value is being inserted.
- *
+ *
* @type {(function(*,string,string,Node):*)|undefined}
* @memberof Polymer
*/
@@ -88,10 +88,10 @@
* Sets the global sanitizeDOMValue available via `Polymer.sanitizeDOMValue`.
*
* @memberof Polymer
- * @param {(function(*,string,string,Node):*)|undefined} sanitizeDOMValue the global sanitizeDOMValue callback
+ * @param {(function(*,string,string,Node):*)|undefined} newSanitizeDOMValue the global sanitizeDOMValue callback
*/
- Polymer.setSanitizeDOMValue = function(sanitizeDOMValue) {
- Polymer.sanitizeDOMValue = sanitizeDOMValue;
+ Polymer.setSanitizeDOMValue = function(newSanitizeDOMValue) {
+ Polymer.sanitizeDOMValue = newSanitizeDOMValue;
}
})();