From 6cda7a6deae17322ace6d097ea8b19bed062ae87 Mon Sep 17 00:00:00 2001 From: benfry Date: Sun, 20 Jun 2010 12:47:30 +0000 Subject: [PATCH] fix typo in javadoc --- app/src/processing/app/Commander.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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); }