summaryrefslogtreecommitdiff
path: root/lib/unmemoize.js
diff options
context:
space:
mode:
authorHubert Argasinski <argasinski.hubert@gmail.com>2016-06-29 01:35:29 -0400
committerHubert Argasinski <argasinski.hubert@gmail.com>2016-06-29 01:56:11 -0400
commit7eaa3b3a9bee0df38ebc0b640a97de42ca05d5da (patch)
tree942b9ea5e9a18f7f55fd01c51555d0c01f82fc5e /lib/unmemoize.js
parent90c4f893a30044b67d48a62e42d2c42f379a822f (diff)
downloadasync-7eaa3b3a9bee0df38ebc0b640a97de42ca05d5da.tar.gz
jsdocs: using proxy modules as categories, modifying minami theme
jsdocs: style fix in outputted html jsdoc: added documentation to support script
Diffstat (limited to 'lib/unmemoize.js')
-rw-r--r--lib/unmemoize.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/unmemoize.js b/lib/unmemoize.js
index e8537d9..f0c65a3 100644
--- a/lib/unmemoize.js
+++ b/lib/unmemoize.js
@@ -1,12 +1,15 @@
/**
- * Undoes a {@link async.memoize}d function, reverting it to the original,
+ * ```
+ * import unmemoize from 'async/unmemoize'
+ * ```
+ * Undoes a [memoize]{@link module:Utils.memoize}d function, reverting it to the original,
* unmemoized form. Handy for testing.
*
* @name unmemoize
* @static
- * @memberOf module:async
+ * @memberOf module:Utils
* @method
- * @see [async.memoize]{@link module:async.memoize}
+ * @see [async.memoize]{@link module:Utils.memoize}
* @category Util
* @param {Function} fn - the memoized function
* @returns {Function} a function that calls the original unmemoized function