From: Mike Bayer Date: Fri, 16 May 2014 16:59:47 +0000 (-0400) Subject: typo X-Git-Tag: rel_0_9_5~53 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f925ad430fd482d77520bb5de62949f9c75ac65;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git typo --- diff --git a/doc/build/faq.rst b/doc/build/faq.rst index 13a64781b1..a1753bbcc0 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)