diff options
Diffstat (limited to 'lib/unmemoize.js')
-rw-r--r-- | lib/unmemoize.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/unmemoize.js b/lib/unmemoize.js index e7f0941..6b7a6f7 100644 --- a/lib/unmemoize.js +++ b/lib/unmemoize.js @@ -1,13 +1,13 @@ 'use strict'; /** - * Undoes a [`memoize`](#memoize)d function, reverting it to the original, + * Undoes a {@link async.memoize}d function, reverting it to the original, * unmemoized form. Handy for testing. * * @name unmemoize * @static * @memberOf async - * @see `async.memoize` + * @see async.memoize * @category Util * @param {Function} fn - the memoized function */ |