8000 Update README.md · ksankumar/clean-code-javascript@20cd844 · GitHub
[go: up one dir, main page]

Skip to content

Commit 20cd844

Browse files
authored
Update README.md
updating L278 to `isActiveClient`
1 parent 94076b0 commit 20cd844

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ function emailClients(clients) {
275275
```javascript
276276
function emailActiveClients(clients) {
277277
clients
278-
.filter(isActive)
278+
.filter(isActiveClient)
279279
.forEach(email);
280280
}
281281

0 commit comments

Comments
 (0)
0