diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2015-09-08 18:09:06 -0400 |
---|---|---|
committer | mike bayer <mike_mp@zzzcomputing.com> | 2015-09-08 18:09:06 -0400 |
commit | 74781d853290c9b275ffec4e6dd3bd6e84af0fa2 (patch) | |
tree | 9a6866e2f36190f5a794c3e78baea97855457655 | |
parent | 0997e843f2cd81a7ddbfcc73d7f87a8061139976 (diff) | |
parent | 3bd58fac7b607007cb42ab7e41d2e2d01fc390e2 (diff) | |
download | sqlalchemy-74781d853290c9b275ffec4e6dd3bd6e84af0fa2.tar.gz |
Merge pull request #197 from davidjb/master
Minor grammar fix for capitalisation in session docs
-rw-r--r-- | doc/build/orm/session_transaction.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/session_transaction.rst b/doc/build/orm/session_transaction.rst index e197eb715..e27c15118 100644 --- a/doc/build/orm/session_transaction.rst +++ b/doc/build/orm/session_transaction.rst @@ -277,7 +277,7 @@ transactions set the flag ``twophase=True`` on the session:: Setting Transaction Isolation Levels ------------------------------------ -:term:`isolation` refers to the behavior of the transaction at the database +:term:`Isolation` refers to the behavior of the transaction at the database level in relation to other transactions occurring concurrently. There are four well-known modes of isolation, and typically the Python DBAPI allows these to be set on a per-connection basis, either through explicit |