From 9e43b6697bbe114ba4a2252b4c23862a99448a25 Mon Sep 17 00:00:00 2001 From: Vladimir Ulupov Date: Mon, 6 Oct 2014 18:31:55 +0400 Subject: [PATCH] fix typo --- docs/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index aa8a00e..f5f0cc4 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -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'))