summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-11-30 12:53:56 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2015-11-30 12:53:56 -0500
commit38e043a475db210143c46588fca70838c9c47c8a (patch)
tree167ae286a3da70e29b6b9cbb98dba99d4eda08c2
parentbe24b3ea8371583d9ccd6fb834ae6f22f39c556e (diff)
parent11e190ef079e14fd1aa9d63fa8776782e683554b (diff)
downloadsqlalchemy-38e043a475db210143c46588fca70838c9c47c8a.tar.gz
Merge remote-tracking branch 'origin/pr/214'
-rw-r--r--doc/build/orm/mapped_sql_expr.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/mapped_sql_expr.rst b/doc/build/orm/mapped_sql_expr.rst
index 1ae5b1285..e091e33a6 100644
--- a/doc/build/orm/mapped_sql_expr.rst
+++ b/doc/build/orm/mapped_sql_expr.rst
@@ -37,7 +37,7 @@ class level, so that it is available from an instance::
some_user = session.query(User).first()
print some_user.fullname
-as well as usable wtihin queries::
+as well as usable within queries::
some_user = session.query(User).filter(User.fullname == "John Smith").first()