Skip to content

Commit 96f5c18

Browse files
committed
docs(runnable.js): FU prettier
Prettier keeps rewriting my documentation **wrong**.
1 parent 2fac117 commit 96f5c18

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

lib/runnable.js

+10-8
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,15 @@ function Runnable(title, fn) {
4747
/**
4848
* Inherit from `EventEmitter.prototype`.
4949
*/
50-
utils.inherits(Runnable, EventEmitter); /**
50+
utils.inherits(Runnable, EventEmitter);
51+
52+
/**
53+
* Get current timeout value in msecs.
54+
*
55+
* @private
56+
* @returns {number} current timeout threshold value
57+
*/
58+
/**
5159
* @summary
5260
* Set timeout threshold value (msecs).
5361
*
@@ -60,13 +68,7 @@ utils.inherits(Runnable, EventEmitter); /**
6068
* @returns {Runnable} this
6169
* @chainable
6270
*/
63-
64-
/**
65-
* Get current timeout value in msecs.
66-
*
67-
* @private
68-
* @returns {number} current timeout threshold value
69-
*/ Runnable.prototype.timeout = function(ms) {
71+
Runnable.prototype.timeout = function(ms) {
7072
if (!arguments.length) {
7173
return this._timeout;
7274
}

0 commit comments

Comments
 (0)