Fix jshint anal issue with mixed single and double quotes
Project: http://git-wip-us.apache.org/repos/asf/cordova-lib/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-lib/commit/2aef8c4a Tree: http://git-wip-us.apache.org/repos/asf/cordova-lib/tree/2aef8c4a Diff: http://git-wip-us.apache.org/repos/asf/cordova-lib/diff/2aef8c4a Branch: refs/heads/master Commit: 2aef8c4a7a7c36ecc63e52956621588259d20e89 Parents: 894d476 Author: Jesse MacFadyen <[email protected]> Authored: Tue Nov 25 15:26:19 2014 -0800 Committer: Jesse MacFadyen <[email protected]> Committed: Tue Nov 25 15:26:19 2014 -0800 ---------------------------------------------------------------------- cordova-lib/src/cordova/create.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/2aef8c4a/cordova-lib/src/cordova/create.js ---------------------------------------------------------------------- diff --git a/cordova-lib/src/cordova/create.js b/cordova-lib/src/cordova/create.js index 7be9470..e6f9135 100644 --- a/cordova-lib/src/cordova/create.js +++ b/cordova-lib/src/cordova/create.js @@ -54,7 +54,7 @@ function create(dir, id, name, cfg) { if(id && !validateIdentifier(id)) { return Q.reject(new CordovaError( - "App id contains a reserved word, or is not a valid identifier." + 'App id contains a reserved word, or is not a valid identifier.' )); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
