Skip to content

Commit 4562a7a

Browse files
authored
Updated chunk.js example a little bit
1 parent f76c57f commit 4562a7a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

examples/chunk.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
/*
22
Example of Chunk() API
33
---------------------
4-
You just need to pass integer number to chunk
5-
API your desired result.
4+
You need to pass an integer number to chunk method to get your desired result.
65
*/
76

87
const jsonQ = require('../index.js');
@@ -13,4 +12,4 @@ const chunking = Q.from('users')
1312
.chunk(4);
1413

1514
console.log('-------- Printing Result of chunk ---------');
16-
console.log(chunking);
15+
console.log(chunking);

0 commit comments

Comments
 (0)