This commit is contained in:
David Glasser
2014-01-30 11:10:59 -08:00
parent b42a29f628
commit ed72f1807e
2 changed files with 2 additions and 2 deletions

View File

@@ -1212,7 +1212,7 @@ main.registerCommand({
main.registerCommand({
name: 'admin grant'
}, function (options) {
process.stderr.write("'admin grant' command not implemented yet");
process.stderr.write("'admin grant' command not implemented yet\n");
return 0;
});

View File

@@ -424,7 +424,7 @@ Fiber(function () {
// tradition.
_.each(commands['--'] || {}, function (value, key) {
if (_.has(isBoolean, "--" + key))
throw new Error("--" + key + " is both an option and a command?")
throw new Error("--" + key + " is both an option and a command?");
isBoolean["--" + key] = true;
});