diff options
| author | Igor Minar | 2010-11-17 12:13:04 -0800 |
|---|---|---|
| committer | Igor Minar | 2010-11-18 02:34:53 -0800 |
| commit | 4c69d694d75f01cffbc75be331b5636068a41048 (patch) | |
| tree | c2dd23dc6813c9ab9baaea50f025908f1be001fc /src/services.js | |
| parent | ff7c738c21075f834b5f610085d195cfa1eb5110 (diff) | |
| download | angular.js-4c69d694d75f01cffbc75be331b5636068a41048.tar.bz2 | |
make @returns type non-optional
Diffstat (limited to 'src/services.js')
| -rw-r--r-- | src/services.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services.js b/src/services.js index 5dfc64f7..f0a15c1b 100644 --- a/src/services.js +++ b/src/services.js @@ -994,7 +994,7 @@ angularServiceInject('$cookieStore', function($store) { * Returns the value of given cookie key * * @param {string} key - * @returns Cookie value + * @returns {Object} Deserialized cookie value */ get: function(/**string*/key) { return fromJson($store[key]); |
