From 67e488128fb5242036f7cb74bcc95755028f10dc Mon Sep 17 00:00:00 2001 From: linclark Date: Thu, 27 Feb 2014 10:54:05 -0500 Subject: [PATCH] docs(core): update fromJson return values Dates are not returned, so remove Date from list of return values. Closes #3070 --- src/Angular.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Angular.js b/src/Angular.js index 21ce1ff7282d..092f47d8f0e1 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -950,7 +950,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)