diff options
Diffstat (limited to 'lib/unmemoize.js')
-rw-r--r-- | lib/unmemoize.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/unmemoize.js b/lib/unmemoize.js index e7d9765..4b2db4d 100644 --- a/lib/unmemoize.js +++ b/lib/unmemoize.js @@ -1,11 +1,12 @@ /** - * Undoes a {@link async.memoize}d function, reverting it to the original, + * Undoes a [memoize]{@link module:Utils.memoize}d function, reverting it to the original, * unmemoized form. Handy for testing. * * @name unmemoize * @static - * @memberOf async - * @see async.memoize + * @memberOf module:Utils + * @method + * @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 |