summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2015-08-09 10:22:41 -0400
committermike bayer <mike_mp@zzzcomputing.com>2015-08-09 10:22:41 -0400
commite99dbe141d0cb809bc1e3abcf8943f2bbf81f934 (patch)
tree3b5655811fc9fbc1adc3f9abf7ba5f66826c84c4
parent838ce5bbad5a88316fa033884ad2b6e629801991 (diff)
parent51870ddaef8abf61ee4c8d6337a72db5395a0a85 (diff)
downloadsqlalchemy-e99dbe141d0cb809bc1e3abcf8943f2bbf81f934.tar.gz
Merge pull request #192 from halfcrazy/patch-1
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.