summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipe David Borba Manana <fdmanana@apache.org>2010-10-30 11:28:32 +0000
committerFilipe David Borba Manana <fdmanana@apache.org>2010-10-30 11:28:32 +0000
commitb49ac86e9ac820ff327d132e418f0df5e0f772c8 (patch)
treeb88aa4da563d50cdb3fdec7bc18962f674ccfc72
parent96616f8d73464bca508f3b9f4df7e8367dc3172d (diff)
Trivial change: add/move semi-collons to where they belong to.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@1029030 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--share/www/script/test/design_docs.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/test/design_docs.js b/share/www/script/test/design_docs.js
index 9571606d..ab3a057f 100644
--- a/share/www/script/test/design_docs.js
+++ b/share/www/script/test/design_docs.js
@@ -84,7 +84,7 @@ function() {
T(xhr.status == 200);
TEquals(xhr.responseText, "ok");
- designDoc.shows.simple = "function() {return 'ko'};"
+ designDoc.shows.simple = "function() { return 'ko'; }";
T(db.save(designDoc).ok);
var xhr = CouchDB.request("GET", "/test_suite_db/_design/test/_show/simple");