Remove redundant parens (#51)

This commit is contained in:
tomjaguarpaw 2021-06-18 21:44:25 +01:00 committed by GitHub
parent 2ba99eaca8
commit 71f5ee60e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,7 +88,7 @@ notation allows you to write these queries in a simpler form, where we don't
have to introduce functions. Expanding on the latter query, we could write::
do user <- getAllUsers
order <- getOrdersForUser (user)
order <- getOrdersForUser user
return (user, order)
Now we have a query that, for each ``User``, fetches all orders for that user.