Skip to content
This repository was archived by the owner on Sep 13, 2021. It is now read-only.

Commit 07a2d07

Browse files
committed
Update README.md
1 parent 54d12bc commit 07a2d07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ function isElement(element) {
88
}
99

1010
// example #1
11-
// using generic .filter()
11+
// generic .filter()
1212
console.log(
1313
Array.filter(document.childNodes, isElement)
1414
);
1515

1616
// example #2
17-
// using generic .slice() and instance .filter()
17+
// generic .slice() and standard .filter()
1818
console.log(
1919
Array.slice(document.childNodes).filter(isElement)
2020
);

0 commit comments

Comments
 (0)