From 8d4c6ecb55eda2e51269b0cc4f334730cb61deed Mon Sep 17 00:00:00 2001 From: Andrew McNett Date: Sun, 21 Sep 2014 21:28:37 -0700 Subject: [PATCH] quickstart typo: "invocing" should be "invoking" :) --- docs/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index f4682ad..aa8a00e 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -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() `, +You can get same functionality by invoking the methods :py:meth:`begin() `, :py:meth:`commit() ` and :py:meth:`rollback() ` explicitly::