diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-01-18 17:23:15 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-01-18 17:23:15 -0500 |
commit | 07440265c4da9d62671a9ce946c72fd2cda2f0ef (patch) | |
tree | 9be40b4d174a78e06b6dc81a41de0b48d0054c19 | |
parent | 4a357af1aec3c96811663e0d3fb493707e52d70e (diff) | |
download | sqlalchemy-07440265c4da9d62671a9ce946c72fd2cda2f0ef.tar.gz |
typos
-rw-r--r-- | lib/sqlalchemy/orm/session.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/orm/session.py b/lib/sqlalchemy/orm/session.py index e6385a3c8..fa2ef01f9 100644 --- a/lib/sqlalchemy/orm/session.py +++ b/lib/sqlalchemy/orm/session.py @@ -643,12 +643,12 @@ class Session(object): :class:`.Session` object's transactional state. If this :class:`.Session` is configured with ``autocommit=False``, - either the :class:`.Connection` correspoinding to the current transaction + either the :class:`.Connection` corresponding to the current transaction is returned, or if no transaction is in progress, a new one is begun and the :class:`.Connection` returned. Alternatively, if this :class:`.Session` is configured with ``autocommit=True``, - an ad-hoc :class:`.Connection` is returned using the :meth:`.Engine.contextual_connect` + an ad-hoc :class:`.Connection` is returned using :meth:`.Engine.contextual_connect` on the underlying :class:`.Engine`. Ambiguity in multi-bind or unbound :class:`.Session` objects can be resolved through |