Skip to content

Commit 4a93379

Browse files
committed
Merge pull request #1 from lipemorais/master
removing unnecessary parentheses
2 parents 504cf2e + 3deca2e commit 4a93379

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
@@ -98,7 +98,7 @@ let byName = (obj) => {
9898
return obj.name;
9999
}
100100

101-
students.filter(isApproved).map(byName));
101+
students.filter(isApproved).map(byName);
102102
// ['Anna', 'Maria']
103103
```
104104

0 commit comments

Comments
 (0)