fix typo in javadoc

This commit is contained in:
benfry
2010-06-20 12:47:30 +00:00
parent 017143e8d6
commit 6cda7a6dea

View File

@@ -37,8 +37,8 @@ import processing.app.debug.*;
* <PRE>
* --help Show the help text.
*
* --sketch=&lt;name&rt; Specify the sketch folder (required)
* --output=&lt;name&rt; Specify the output folder (required and
* --sketch=&lt;name&gt; Specify the sketch folder (required)
* --output=&lt;name&gt; 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=&lt;file&rt; Specify a preferences file to use (optional).
* --preferences=&lt;file&gt; Specify a preferences file to use (optional).
* </PRE>
*
* 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);
}