Skip to content

Commit e9e8423

Browse files
authored
Update chapter3.md (#422)
Remove unnecessary comma.
1 parent 3581078 commit e9e8423

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/chapter3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ findEntry firstName lastName book = head (filter filterEntry book)
550550

551551
Let's go over this code step by step.
552552

553-
`findEntry` brings three names into scope: `firstName`, and `lastName`, both representing strings, and `book`, an `AddressBook`.
553+
`findEntry` brings three names into scope: `firstName` and `lastName`, both representing strings, and `book`, an `AddressBook`.
554554

555555
The right hand side of the definition combines the `filter` and `head` functions: first, the list of entries is filtered, and the `head` function is applied to the result.
556556

0 commit comments

Comments
 (0)