Skip to content
This repository has been archived by the owner on Feb 5, 2022. It is now read-only.

Commit

Permalink
Merge pull request #8 from yoloseem/patch-1
Browse files Browse the repository at this point in the history
Fix docstring typos.
  • Loading branch information
dahlia committed Sep 26, 2013
2 parents 1e7d7b2 + 5ce032c commit b04cba9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sider/session.py
Expand Up @@ -122,13 +122,13 @@ def transaction(self):
you can use this :attr:`transaction` property as like a method::
def block(trial, transaction):
list_[0] = list[0].upper()
list_[0] = list_[0].upper()
session.transaction(block)
Or you can use it in a :keyword:`for` loop::
for trial in session.transaction:
list_[0] = list[0].upper()
list_[0] = list_[0].upper()
.. seealso::
Expand Down

0 comments on commit b04cba9

Please sign in to comment.