Merge pull request #106 from AEAMcNett/patch-1

Fix Typo

Thanks to @AEAMcNett
This commit is contained in:
Stefan Wehrmeyer 2014-09-22 10:36:09 +02:00
commit b2ce05c1f1

View File

@ -75,7 +75,7 @@ statement::
with dataset.connect() as tx:
tx['user'].insert(dict(name='John Doe', age=46, country='China'))
You can get same functionality by invocing the methods :py:meth:`begin() <dataset.Table.begin>`,
You can get same functionality by invoking the methods :py:meth:`begin() <dataset.Table.begin>`,
:py:meth:`commit() <dataset.Table.commit>` and :py:meth:`rollback() <dataset.Table.rollback>`
explicitly::