quickstart typo: "invocing" should be "invoking"

:)
This commit is contained in:
Andrew McNett 2014-09-21 21:28:37 -07:00
parent 17bad827ae
commit 8d4c6ecb55

View File

@ -75,7 +75,7 @@ statement::
with dataset.connect() as tx: with dataset.connect() as tx:
tx['user'].insert(dict(name='John Doe', age=46, country='China')) 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>` :py:meth:`commit() <dataset.Table.commit>` and :py:meth:`rollback() <dataset.Table.rollback>`
explicitly:: explicitly::