diff --git a/app/src/processing/app/Commander.java b/app/src/processing/app/Commander.java index 19bdb42d5..2d6ad60ee 100644 --- a/app/src/processing/app/Commander.java +++ b/app/src/processing/app/Commander.java @@ -37,8 +37,8 @@ import processing.app.debug.*; *
* --help Show the help text. * - * --sketch=<name&rt; Specify the sketch folder (required) - * --output=<name&rt; Specify the output folder (required and + * --sketch=<name> Specify the sketch folder (required) + * --output=<name> Specify the output folder (required and * cannot be the same as the sketch folder.) * * --preprocess Preprocess a sketch into .java files. @@ -51,7 +51,7 @@ import processing.app.debug.*; * --platform Specify the platform (export to application only). * Should be one of 'windows', 'macosx', or 'linux'. * - * --preferences=<file&rt; Specify a preferences file to use (optional). + * --preferences=<file> Specify a preferences file to use (optional). ** * To build the command line version, first build for your platform, @@ -245,9 +245,9 @@ public class Commander implements RunnerListener { } public void statusNotice(String message) { - System.err.println(message); + System.err.println(message); } - + public void statusError(String message) { System.err.println(message); }