summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhalfcrazy <hackzhuyan@gmail.com>2015-08-09 12:00:17 +0800
committerhalfcrazy <hackzhuyan@gmail.com>2015-08-09 12:00:17 +0800
commit51870ddaef8abf61ee4c8d6337a72db5395a0a85 (patch)
tree3b5655811fc9fbc1adc3f9abf7ba5f66826c84c4
parent838ce5bbad5a88316fa033884ad2b6e629801991 (diff)
downloadsqlalchemy-pr/192.tar.gz
fix typo int->intopr/192
-rw-r--r--lib/sqlalchemy/orm/session.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/session.py b/lib/sqlalchemy/orm/session.py
index 4619027e5..b988a9230 100644
--- a/lib/sqlalchemy/orm/session.py
+++ b/lib/sqlalchemy/orm/session.py
@@ -1983,7 +1983,7 @@ class Session(_SessionClassMethods):
For ``autocommit`` Sessions with no active manual transaction, flush()
will create a transaction on the fly that surrounds the entire set of
- operations int the flush.
+ operations into the flush.
:param objects: Optional; restricts the flush operation to operate
only on elements that are in the given collection.