From b626057bb1ad453b0f623d259b57cb19a4be154f Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Mon, 1 Sep 2014 23:34:48 -0700 Subject: [PATCH] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9d42b306..0073fb87 100644 --- a/README.md +++ b/README.md @@ -47,9 +47,8 @@ The use of the URL param `pretty` is optional, and results in pretty-printed JSO Transactions are supported. For example, to execute two statements within a transaction, separate them with a newline and add `transaction` to the URL like so: curl -XPOST 'localhost:4001/db?pretty&transaction' -d ' -INSERT INTO foo(name) VALUES("fiona") -INSERT INTO foo(name) VALUES("fiona") -' + INSERT INTO foo(name) VALUES("fiona") + INSERT INTO foo(name) VALUES("fiona")' When a transaction is in place either both statements will succeed, or neither.