1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-11-26 14:43:53 +03:00

Merge pull request #37 from qfpl/paritcularly

Fix typo
This commit is contained in:
Sean Chalmers 2018-02-09 08:32:58 +10:00 committed by GitHub
commit 0f7b763314
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,7 +77,7 @@ getComments
getComments =
let
sql = "SELECT id,topic,comment,time FROM comments WHERE topic = ?"
-- There are several possible implementations of this function. Paritcularly
-- There are several possible implementations of this function. Particularly
-- there may be a trade-off between deciding to throw an Error if a DbComment
-- cannot be converted to a Comment, or simply ignoring any DbComment that is
-- not valid.