summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Widman <jeff@jeffwidman.com>2015-11-16 18:47:29 -0800
committerJeff Widman <jeff@jeffwidman.com>2015-11-16 18:47:29 -0800
commit11e190ef079e14fd1aa9d63fa8776782e683554b (patch)
tree9b5306db2a37fbbcdad76b76632b9eee08b110bb
parent0847097c29ab48a5f111518e2c6ee324d5242057 (diff)
downloadsqlalchemy-pr/214.tar.gz
Fix typo: wtihin --> withinpr/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()