From 53f3be3306d3d009e1a2727b427a0308b8d52fcd Mon Sep 17 00:00:00 2001 From: mscherer Date: Mon, 18 Feb 2013 03:13:34 +0100 Subject: [PATCH] Update README.md Fix syntax error in db.show example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c38c1cd..1e1bc350 100644 --- a/README.md +++ b/README.md @@ -519,7 +519,7 @@ calls a show function of the specified design for the document specified by doc_ optional query string additions `params`. ``` js -alice.show('characters', 'format_doc', '3621898430' function(err, doc) { +alice.show('characters', 'format_doc', '3621898430', function(err, doc) { if (!err) { console.log(doc); }