diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-16 12:59:47 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-16 13:00:01 -0400 |
commit | 480d395c4479cbef010a39fdfd82654a40279e5e (patch) | |
tree | 466bc09537d3258554b5a8c996b51aa2f7f057c4 | |
parent | 47e90e266e29e2b38c539e2242c8a785d941378e (diff) | |
download | sqlalchemy-480d395c4479cbef010a39fdfd82654a40279e5e.tar.gz |
typo
-rw-r--r-- | doc/build/faq.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/faq.rst b/doc/build/faq.rst index 33d42167a..96a34c58f 100644 --- a/doc/build/faq.rst +++ b/doc/build/faq.rst @@ -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) |