diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/apis.js | 2 | ||||
| -rw-r--r-- | src/sanitizer.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/apis.js b/src/apis.js index d63e8bea..a73626cf 100644 --- a/src/apis.js +++ b/src/apis.js @@ -466,7 +466,7 @@ var angularArray = { * {@link angular.Array} for more info. * * @param {Array} array The array to count elements in. - * @param {(Function()|string)=} condition A function to be evaluated or angular expression to be + * @param {(function()|string)=} condition A function to be evaluated or angular expression to be * compiled and evaluated. The element that is currently being iterated over, is exposed to * the `condition` as `this`. * @returns {number} Number of elements in the array (for which the condition evaluates to true). diff --git a/src/sanitizer.js b/src/sanitizer.js index 61b61c90..b4764271 100644 --- a/src/sanitizer.js +++ b/src/sanitizer.js @@ -205,7 +205,7 @@ function makeMap(str){ /** * decodes all entities into regular string * @param value - * @returns + * @returns {string} A string with decoded entities. */ var hiddenPre=document.createElement("pre"); function decodeEntities(value) { |
