You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by jh...@apache.org on 2012/02/27 05:16:33 UTC

git commit: Explicit semicolon, no more implicit semicolon insertion

Updated Branches:
  refs/heads/COUCHDB-1417 e86b3de75 -> d50ed4e15


Explicit semicolon, no more implicit semicolon insertion


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/d50ed4e1
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/d50ed4e1
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/d50ed4e1

Branch: refs/heads/COUCHDB-1417
Commit: d50ed4e158eadeb73747fdc86d3c048af7a1e75b
Parents: e86b3de
Author: Jason Smith (work) <jh...@apache.org>
Authored: Mon Feb 27 04:14:36 2012 +0000
Committer: Jason Smith (work) <jh...@apache.org>
Committed: Mon Feb 27 04:14:36 2012 +0000

----------------------------------------------------------------------
 test/javascript/couch_http.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/d50ed4e1/test/javascript/couch_http.js
----------------------------------------------------------------------
diff --git a/test/javascript/couch_http.js b/test/javascript/couch_http.js
index 6a2bc10..0e0e383 100644
--- a/test/javascript/couch_http.js
+++ b/test/javascript/couch_http.js
@@ -10,7 +10,7 @@
 // License for the specific language governing permissions and limitations under
 // the License.
 
-!function() {
+; (function() {
   CouchHTTP.prototype.base_url = "http://127.0.0.1:5984"
 
   if(typeof(CouchHTTP) != "undefined") {
@@ -54,7 +54,7 @@
       return null;
     };
   }
-}();
+})();
 
 CouchDB.urlPrefix = "";
 CouchDB.newXhr = function() {