From 9477cd15051af1d852ef836da8e92a7dcafdfc59 Mon Sep 17 00:00:00 2001 From: SpootDev Date: Fri, 15 Jul 2016 22:17:34 -0500 Subject: [PATCH] spelling fix --- doc/src/faq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/faq.rst b/doc/src/faq.rst index 69273ba5..d0636669 100644 --- a/doc/src/faq.rst +++ b/doc/src/faq.rst @@ -73,7 +73,7 @@ Why does `!cursor.execute()` raise the exception *can't adapt*? I can't pass an integer or a float parameter to my query: it says *a number is required*, but *it is* a number! In your query string, you always have to use ``%s`` placeholders, - event when passing a number. All Python objects are converted by Psycopg + even when passing a number. All Python objects are converted by Psycopg in their SQL representation, so they get passed to the query as strings. See :ref:`query-parameters`. ::