diff options
| author | linclark | 2014-02-27 10:54:05 -0500 | 
|---|---|---|
| committer | Brian Ford | 2014-02-27 16:13:52 -0800 | 
| commit | 8794a173f9c175df2343245e71ee9a137f5bc66a (patch) | |
| tree | 5ea18e1bb9d18c73f92e60eecc25d101276bf81d | |
| parent | 41e648a47f70c8e82cfbb11012c83255d051d528 (diff) | |
| download | angular.js-8794a173f9c175df2343245e71ee9a137f5bc66a.tar.bz2 | |
docs(core): update fromJson return values
Dates are not returned, so remove Date from list of return values.
Closes #3070
| -rw-r--r-- | src/Angular.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/Angular.js b/src/Angular.js index bc2ecf94..68ae9295 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -986,7 +986,7 @@ function toJson(obj, pretty) {   * Deserializes a JSON string.   *   * @param {string} json JSON string to deserialize. - * @returns {Object|Array|Date|string|number} Deserialized thingy. + * @returns {Object|Array|string|number} Deserialized thingy.   */  function fromJson(json) {    return isString(json) | 
