Skip to content

Commit f7bbbce

Browse files
committed
Fix esdoc generation
1 parent c8a1554 commit f7bbbce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"babel-register": "^6.18.0",
2828
"babelify": "^7.3.0",
2929
"browserify": "^13.1.0",
30-
"esdoc": "^0.4.0",
31-
"esdoc-importpath-plugin": "0.0.1",
30+
"esdoc": "^0.5.2",
31+
"esdoc-importpath-plugin": "^0.1.1",
3232
"fs-extra": "^1.0.0",
3333
"glob": "^5.0.14",
3434
"gulp": "^3.9.1",

src/v1/driver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class Driver {
127127
* We don't pool Session instances, to avoid users using the Session after they've called close.
128128
* The `Session` object is just a thin wrapper around Connection anyway, so it makes little difference.
129129
* @param {Promise} connectionPromise - promise resolved with the connection.
130-
* @return {function(*=)} - function that releases the connection and then executes an optional callback.
130+
* @return {function(callback: function)} - function that releases the connection and then executes an optional callback.
131131
* @protected
132132
*/
133133
_releaseConnection(connectionPromise) {

0 commit comments

Comments
 (0)