Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 119D21093A for ; Tue, 3 Dec 2013 23:40:34 +0000 (UTC) Received: (qmail 34670 invoked by uid 500); 3 Dec 2013 23:40:34 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 34652 invoked by uid 500); 3 Dec 2013 23:40:34 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 34645 invoked by uid 99); 3 Dec 2013 23:40:34 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Dec 2013 23:40:34 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id BF38991C638; Tue, 3 Dec 2013 23:40:33 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: steven@apache.org To: commits@cordova.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: js commit: CB-5316 Spell Cordova as a brand unless it's a command or script Date: Tue, 3 Dec 2013 23:40:33 +0000 (UTC) Updated Branches: refs/heads/3.3.x 72b53e071 -> b8e29d3a2 CB-5316 Spell Cordova as a brand unless it's a command or script Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/b8e29d3a Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/b8e29d3a Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/b8e29d3a Branch: refs/heads/3.3.x Commit: b8e29d3a2a7401c2630d8cfb06c7c33eb4b714b5 Parents: 72b53e0 Author: Josh Soref Authored: Thu Nov 7 17:32:07 2013 -0500 Committer: Steven Gill Committed: Tue Dec 3 15:39:03 2013 -0800 ---------------------------------------------------------------------- README.md | 2 +- build/gv-requires.js | 2 +- lib/common/builder.js | 2 +- test/test.require.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-js/blob/b8e29d3a/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 1d035b1..97da7ae 100644 --- a/README.md +++ b/README.md @@ -198,7 +198,7 @@ Build the .js file and drop it in as a replacement for cordova.js. { id:"atari", initialize:function(){ - console.log('firing up cordova in my atari, yo.'); + console.log('firing up Cordova in my Atari, yo.'); }, objects:{ cordova:{ http://git-wip-us.apache.org/repos/asf/cordova-js/blob/b8e29d3a/build/gv-requires.js ---------------------------------------------------------------------- diff --git a/build/gv-requires.js b/build/gv-requires.js index 864e429..fb7684d 100755 --- a/build/gv-requires.js +++ b/build/gv-requires.js @@ -28,7 +28,7 @@ process.chdir(path.join(__dirname, "..")) var platforms = getPlatforms() console.log("//-------------------------------------------------------") -console.log("// graphviz .dot file for cordova requires by platform") +console.log("// graphviz .dot file for Cordova requires by platform") console.log("// http://www.graphviz.org/") console.log("// ") console.log("// - ./build/gv-requires.js > ~/tmp/requires.dot") http://git-wip-us.apache.org/repos/asf/cordova-js/blob/b8e29d3a/lib/common/builder.js ---------------------------------------------------------------------- diff --git a/lib/common/builder.js b/lib/common/builder.js index 4421121..826820d 100644 --- a/lib/common/builder.js +++ b/lib/common/builder.js @@ -85,7 +85,7 @@ function include(parent, objects, clobber, merge) { include(result, obj.children, clobber, merge); } } catch(e) { - utils.alert('Exception building cordova JS globals: ' + e + ' for key "' + key + '"'); + utils.alert('Exception building Cordova JS globals: ' + e + ' for key "' + key + '"'); } }); } http://git-wip-us.apache.org/repos/asf/cordova-js/blob/b8e29d3a/test/test.require.js ---------------------------------------------------------------------- diff --git a/test/test.require.js b/test/test.require.js index 19d179d..c7e2285 100644 --- a/test/test.require.js +++ b/test/test.require.js @@ -20,7 +20,7 @@ */ describe("require + define", function () { - it("exist off of cordova", function () { + it("exists off of cordova", function () { var cordova = require('cordova'); expect(cordova.require).toBeDefined(); expect(cordova.define).toBeDefined();