From dc3a8e1a94342d015f0c229c3cefc352f12b7ad1 Mon Sep 17 00:00:00 2001 From: Mike Eason Date: Sun, 30 Jul 2017 21:14:37 +0100 Subject: [PATCH] Fixed a small typo in the readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 544d10e..5dfaa5d 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ The result will look like this: { query: 'select count(*) from account where name = @p1', type: 'query', - params:[ + params: [ { name: '@p1', value: 'Mike', @@ -252,7 +252,7 @@ With **transactions**, you can use the special `'$prev'` parameter to inject the let commands = [ //First query, executes a stored procedure and returns an account id. { - query: 'insert_account (@name)`, + query: 'insert_account (@name)', params: [ { name: '@name',