From e2a7d3e204816f7e21c5319b20516bec79265cde Mon Sep 17 00:00:00 2001 From: kallisti-dev Date: Wed, 9 May 2012 18:58:34 -0300 Subject: [PATCH] Fix a typo in the docs of Database.PostgreSQL.Simple --- src/Database/PostgreSQL/Simple.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Database/PostgreSQL/Simple.hs b/src/Database/PostgreSQL/Simple.hs index b309c2da..3bed05d8 100644 --- a/src/Database/PostgreSQL/Simple.hs +++ b/src/Database/PostgreSQL/Simple.hs @@ -662,7 +662,7 @@ fmtError msg q xs = throw FormatError { -- Automated type inference means that you will often be able to avoid -- supplying explicit type signatures for the elements of a tuple. -- However, sometimes the compiler will not be able to infer your --- types. Consider a care where you write a numeric literal in a +-- types. Consider a case where you write a numeric literal in a -- parameter tuple: -- -- > query conn "select ? + ?" (40,2)