Skip to content

Commit

Permalink
CB-5316 Spell Cordova as a brand unless it's a command or script
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Nov 7, 2013
1 parent 9740276 commit 5940878
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:{
Expand Down
2 changes: 1 addition & 1 deletion build/gv-requires.js
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion lib/common/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 + '"');
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion test/test.require.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 5940878

Please sign in to comment.