summaryrefslogtreecommitdiff
path: root/lib/priorityQueue.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/priorityQueue.js')
-rw-r--r--lib/priorityQueue.js4
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