diff options
author | Ben Alpert <spicyjalapeno@gmail.com> | 2013-12-27 23:11:23 -0700 |
---|---|---|
committer | Ben Alpert <spicyjalapeno@gmail.com> | 2013-12-27 23:11:23 -0700 |
commit | 7bb8944e312ff991575824e2c0cf0e1eae933791 (patch) | |
tree | 32daca8d37d49860ba00f442872cffe7bd4f4319 | |
parent | 2104d0ba2d612a26d363a3049d5e49efe4284e15 (diff) | |
download | sqlalchemy-pr/54.tar.gz |
session docs: Change `object` to `someobject`pr/54
This makes the code block more consistent with the preceding one and also prevents the variable from being colored as a builtin (which `object` is) during syntax highlighting.
-rw-r--r-- | doc/build/orm/session.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/session.rst b/doc/build/orm/session.rst index b3a6e4384..c4d9b0874 100644 --- a/doc/build/orm/session.rst +++ b/doc/build/orm/session.rst @@ -462,7 +462,7 @@ available on :class:`~sqlalchemy.orm.session.Session`:: The newer :ref:`core_inspection_toplevel` system can also be used:: from sqlalchemy import inspect - session = inspect(object).session + session = inspect(someobject).session .. _session_faq_threadsafe: |