diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2014-05-11 13:04:05 -0400 |
---|---|---|
committer | mike bayer <mike_mp@zzzcomputing.com> | 2014-05-11 13:04:05 -0400 |
commit | 1abd53a3556b9593d9eba868d69c13bae3c3a7ab (patch) | |
tree | aa51705fc9d0074225835290f482d9dff135d473 /lib/sqlalchemy/engine/base.py | |
parent | 230c0d5a19978872fae4e1261736a9e300ae9bf1 (diff) | |
parent | f341cfbfe117e777569d58eb6d2c3d3f7fe7bbf3 (diff) | |
download | sqlalchemy-1abd53a3556b9593d9eba868d69c13bae3c3a7ab.tar.gz |
Merge pull request #91 from smurfix/de_apostroph_ify
Documentation fix-up: "its" vs. "it's"
Diffstat (limited to 'lib/sqlalchemy/engine/base.py')
-rw-r--r-- | lib/sqlalchemy/engine/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index 997991b30..f9fc04d76 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -122,7 +122,7 @@ class Connection(Connectable): execution options which will take effect for a call to :meth:`execute`. As the new :class:`.Connection` references the same underlying resource, it's usually a good idea to ensure that the copies - would be discarded immediately, which is implicit if used as in:: + will be discarded immediately, which is implicit if used as in:: result = connection.execution_options(stream_results=True).\\ execute(stmt) |