summaryrefslogtreecommitdiff
path: root/lib/cargo.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/cargo.js')
-rw-r--r--lib/cargo.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cargo.js b/lib/cargo.js
index faa4ab4..a2fe98e 100644
--- a/lib/cargo.js
+++ b/lib/cargo.js
@@ -4,7 +4,7 @@ import queue from './internal/queue';
/**
* A cargo of tasks for the worker function to complete. Cargo inherits all of
- * the same methods and event callbacks as [`queue`](#queue).
+ * the same methods and event callbacks as {@link async.queue}.
* @typedef {Object} cargo
* @property {Function} length - A function returning the number of items
* waiting to be processed. Invoke with ().
@@ -46,7 +46,7 @@ import queue from './internal/queue';
* @name cargo
* @static
* @memberOf async
- * @see `async.queue`
+ * @see async.queue
* @category Control Flow
* @param {Function} worker - An asynchronous function for processing an array
* of queued tasks, which must call its `callback(err)` argument when finished,