]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
typo
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 16 May 2014 16:59:47 +0000 (12:59 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 16 May 2014 17:00:01 +0000 (13:00 -0400)
doc/build/faq.rst

index 33d42167a04455b4c6dbae5b8dcecc5af85f283b..96a34c58f905547c77959c33df5cca325bc5821c 100644 (file)
@@ -677,7 +677,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)