Consistent wording

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-11-01 20:50:57 +02:00
parent ef40a60a50
commit 0ba944aa66
18 changed files with 21 additions and 18 deletions

View File

@ -17,6 +17,6 @@ const bifurcate = (arr, filter) =>
```
```js
bifurcate(['beep', 'boop', 'foo', 'bar'], [true, true, false, true]);
bifurcate(['beep', 'boop', 'foo', 'bar'], [true, true, false, true]);
// [ ['beep', 'boop', 'bar'], ['foo'] ]
```