Skip to content

Commit

Permalink
docs($cacheFactory): fix backquotes on method descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
mernen authored and mhevery committed Sep 11, 2012
1 parent b01c28c commit 7fa391c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ng/cacheFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
*
* - `{object}` `info()` — Returns id, size, and options of cache.
* - `{void}` `put({string} key, {*} value)` — Puts a new key-value pair into the cache.
* - `{{*}} `get({string} key) — Returns cached value for `key` or undefined for cache miss.
* - `{void}` `remove({string} key) — Removes a key-value pair from the cache.
* - `{void}` `removeAll() — Removes all cached values.
* - `{void}` `destroy() — Removes references to this cache from $cacheFactory.
* - `{{*}}` `get({string} key)` — Returns cached value for `key` or undefined for cache miss.
* - `{void}` `remove({string} key)` — Removes a key-value pair from the cache.
* - `{void}` `removeAll()` — Removes all cached values.
* - `{void}` `destroy()` — Removes references to this cache from $cacheFactory.
*
*/
function $CacheFactoryProvider() {
Expand Down

0 comments on commit 7fa391c

Please sign in to comment.