Skip to content

Commit 9be53d8

Browse files
committed
Refactor comments
1 parent 1b9383e commit 9be53d8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ var iterate = require('array-iterate')
44

55
module.exports = modifierFactory
66

7-
/* Turn `callback` into a child-modifier accepting a parent.
8-
* See `array-iterate` for more info. */
7+
// Turn `callback` into a child-modifier accepting a parent. See
8+
// `array-iterate` for more info.
99
function modifierFactory(callback) {
1010
return iteratorFactory(wrapperFactory(callback))
1111
}
1212

13-
/* Turn `callback` into a `iterator' accepting a parent. */
13+
// Turn `callback` into a `iterator' accepting a parent.
1414
function iteratorFactory(callback) {
1515
return iterator
1616

@@ -25,7 +25,7 @@ function iteratorFactory(callback) {
2525
}
2626
}
2727

28-
/* Pass the context as the third argument to `callback`. */
28+
// Pass the context as the third argument to `callback`.
2929
function wrapperFactory(callback) {
3030
return wrapper
3131

0 commit comments

Comments
 (0)