aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTyler Kellogg2014-03-16 16:53:00 -0700
committerVojta Jina2014-03-21 11:42:18 -0700
commitdf804406fb97644a4ea8e91847170ecb75aaf1ae (patch)
treeadf3e72555b72369c8e89f9f71f4889851e1a574
parentdadce485a7a1d30fb5614188ebd8a361c9990060 (diff)
downloadangular.js-df804406fb97644a4ea8e91847170ecb75aaf1ae.tar.bz2
docs($cookies): cookies serializer only supports strings
Closes #6705
-rw-r--r--src/ngCookies/cookies.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ngCookies/cookies.js b/src/ngCookies/cookies.js
index b78fcd5a..ccfae23b 100644
--- a/src/ngCookies/cookies.js
+++ b/src/ngCookies/cookies.js
@@ -25,8 +25,9 @@ angular.module('ngCookies', ['ng']).
* @description
* Provides read/write access to browser's cookies.
*
- * Only a simple Object is exposed and by adding or removing properties to/from
- * this object, new cookies are created/deleted at the end of current $eval.
+ * Only a simple Object is exposed and by adding or removing properties to/from this object, new
+ * cookies are created/deleted at the end of current $eval.
+ * The object's properties can only be strings.
*
* Requires the {@link ngCookies `ngCookies`} module to be installed.
*