summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-05-16 12:59:47 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-05-16 12:59:47 -0400
commit0f925ad430fd482d77520bb5de62949f9c75ac65 (patch)
tree3bf83e9dd03e978e84788d134a85e2586affe9fd
parent6212d59bdc0f09be92a46a8acc4e9b8c6404eb96 (diff)
downloadsqlalchemy-0f925ad430fd482d77520bb5de62949f9c75ac65.tar.gz
typo
-rw-r--r--doc/build/faq.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/faq.rst b/doc/build/faq.rst
index 13a64781b..a1753bbcc 100644
--- a/doc/build/faq.rst
+++ b/doc/build/faq.rst
@@ -679,7 +679,7 @@ The ORM's slowness in turning rows into ORM-mapped objects is a product
of the complexity of this operation combined with the overhead of cPython.
Common strategies to mitigate this include:
-* fetch individual columns, not rows, that is::
+* fetch individual columns instead of full entities, that is::
session.query(User.id, User.name)