summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-09-17 17:48:48 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2013-09-17 17:49:07 -0500
commit3e947c2c06abbcf4ea8df63f79e1efcfc367bd61 (patch)
tree3dce23916b43b93e4c50f896da23bb8b19b859a0
parent6b3041668610cb56200184bd2a52ad6d27ecf936 (diff)
downloadsqlalchemy-3e947c2c06abbcf4ea8df63f79e1efcfc367bd61.tar.gz
fix typo [ticket:2827]
-rw-r--r--doc/build/orm/session.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/session.rst b/doc/build/orm/session.rst
index 7626092f7..fabd98808 100644
--- a/doc/build/orm/session.rst
+++ b/doc/build/orm/session.rst
@@ -384,7 +384,7 @@ Keep the lifecycle of the session (and usually the transaction)
session.query(FooBar).update({"x": 5})
class ThingTwo(object):
- def go(self):
+ def go(self, session):
session.query(Widget).update({"q": 18})
def run_my_program():