summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpootDev <spootdev@gmail.com>2016-07-15 22:17:34 -0500
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2016-08-07 02:44:08 +0100
commitedd51aac25b2cc9f25e0df1d94724b945797832a (patch)
tree9ada702bd16cb13bacc9f1c82118345451c56f6e
parentab671146de9615b0371a4f4857d849f230916c64 (diff)
downloadpsycopg2-edd51aac25b2cc9f25e0df1d94724b945797832a.tar.gz
spelling fix
-rw-r--r--doc/src/faq.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/faq.rst b/doc/src/faq.rst
index 69273ba..d063666 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`. ::