summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhalfcrazy <hackzhuyan@gmail.com>2015-08-09 12:00:17 +0800
committerStefan Urbanek <stefan@agentfarms.net>2015-08-25 23:56:10 -0700
commitbf63607b41ff689c68902266c5c62aff8b901629 (patch)
treef0b3d9bd9a7e28dfb05ebcdade75ff7a7dc6a257
parent09be16fc9cd98b2957952911a9e1ed3b1a6da784 (diff)
downloadsqlalchemy-bf63607b41ff689c68902266c5c62aff8b901629.tar.gz
fix typo int->into
-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.