Skip to content

Commit 750fb91

Browse files
committed
Fix: typo
1 parent cf91358 commit 750fb91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_lib/group-adjacent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// algorithmn copied from https://rlaanemets.com/post/show/group-array-by-adjacent-elements-in-javascript
1+
// algorithm copied from https://rlaanemets.com/post/show/group-array-by-adjacent-elements-in-javascript
22
function groupAdjacent(array, cb) {
33
return array.reduce((prev, cur) => {
44
if (prev.length > 0) {

0 commit comments

Comments
 (0)