summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-08-29 18:13:44 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-08-29 18:13:44 -0400
commit53f93a3ba71af21be5f77fcd2ee4c0d051fbdf5d (patch)
tree4709e4b41f8954f539ddd3662b3290e93ab65c4a
parent3fc7951674ceab85fb13936fc268547bb15ec54a (diff)
downloadsqlalchemy-53f93a3ba71af21be5f77fcd2ee4c0d051fbdf5d.tar.gz
doc tweak
-rw-r--r--lib/sqlalchemy/orm/session.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/orm/session.py b/lib/sqlalchemy/orm/session.py
index 06d5b89a1..4727de218 100644
--- a/lib/sqlalchemy/orm/session.py
+++ b/lib/sqlalchemy/orm/session.py
@@ -497,8 +497,8 @@ class Session(object):
issue any SQL in order to load collections or attributes which are not
yet loaded, or were marked as "expired".
- The session methods which control instance state include ``add()``,
- ``delete()``, ``merge()``, and ``expunge()``.
+ The session methods which control instance state include :meth:`.Session.add`,
+ :meth:`.Session.delete`, :meth:`.Session.merge`, and :meth:`.Session.expunge`.
The Session object is generally **not** threadsafe. A session which is
set to ``autocommit`` and is only read from may be used by concurrent