diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index 8f63d81ca..b72f6d090 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -6381,7 +6381,7 @@ public class PApplet extends Applet * The simplest way to turn and applet into an application is to * add the following code to your program: *
static public void main(String args[]) {
- * PApplet.main(new String[] { "YourSketchName" };
+ * PApplet.main(new String[] { "YourSketchName" });
* }
* This will properly launch your applet from a double-clickable
* .jar or from the command line.
@@ -7909,9 +7909,9 @@ public class PApplet extends Applet
}
- public void beginRaw(PGraphics raw) {
- if (recorder != null) recorder.beginRaw(raw);
- g.beginRaw(raw);
+ public void beginRaw(PGraphics rawGraphics) {
+ if (recorder != null) recorder.beginRaw(rawGraphics);
+ g.beginRaw(rawGraphics);
}