Merge pull request #108 from vaal-/patch-1

fix typo
This commit is contained in:
Friedrich Lindenberg
2014-10-06 16:33:21 +02:00
+1 -1
View File
@@ -92,7 +92,7 @@ Nested transactions are supported too::
db = dataset.connect()
with db as tx1:
tx1['user'].insert(dict(name='John Doe', age=46, country='China'))
with db sa tx2:
with db as tx2:
tx2['user'].insert(dict(name='Jane Doe', age=37, country='France', gender='female'))