]> 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 16:59:47 +0000 (12:59 -0400)
doc/build/faq.rst

index 13a64781b164e68c57591289e0e087d7484226db..a1753bbcc093e1ff2cf884494acd1eaf63b52fdd 100644 (file)
@@ -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)