diff options
author | Graeme Yeates <yeatesgraeme@gmail.com> | 2016-04-29 15:26:25 -0400 |
---|---|---|
committer | Graeme Yeates <yeatesgraeme@gmail.com> | 2016-04-29 15:26:25 -0400 |
commit | ec9f81adfda9ec9681b3f33f24d3c2e917b4b908 (patch) | |
tree | baa261902276ef2a032d7bd0c2f5f9eba23391af /lib/priorityQueue.js | |
parent | a9636c00e269c1bf2f3def12cba36563e7658201 (diff) | |
download | async-ec9f81adfda9ec9681b3f33f24d3c2e917b4b908.tar.gz |
Fix doc linking (see #1135)doc-linking
Diffstat (limited to 'lib/priorityQueue.js')
-rw-r--r-- | lib/priorityQueue.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/priorityQueue.js b/lib/priorityQueue.js index 4c29596..0d8fd93 100644 --- a/lib/priorityQueue.js +++ b/lib/priorityQueue.js @@ -9,13 +9,13 @@ import setImmediate from './setImmediate'; import queue from './queue'; /** - * The same as [`queue`](#queue) only tasks are assigned a priority and + * The same as {@link async.queue} only tasks are assigned a priority and * completed in ascending priority order. * * @name priorityQueue * @static * @memberOf async - * @see `async.queue` + * @see async.queue * @category Control Flow * @param {Function} worker - An asynchronous function for processing a queued * task, which must call its `callback(err)` argument when finished, with an |