From aa02cf3198de98d91d9d16b37f85169275612708 Mon Sep 17 00:00:00 2001 From: Andrew McCluskey Date: Wed, 7 Feb 2018 11:57:57 +1000 Subject: [PATCH] Fix typo --- level04/src/FirstApp/DB.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level04/src/FirstApp/DB.hs b/level04/src/FirstApp/DB.hs index ebf59a7..a49ce72 100644 --- a/level04/src/FirstApp/DB.hs +++ b/level04/src/FirstApp/DB.hs @@ -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.