readme typo fix

This commit is contained in:
sojamo 2015-09-04 15:12:40 +08:00
parent a4a4824bfe
commit 665b0c1aa5
1 changed files with 2 additions and 2 deletions

View File

@ -125,8 +125,8 @@ Alternatively, ControlP5 can be instantiated from other places as well for examp
class GUI {
ControlP5 cp5;
GUI(ControlP5 theControlP5) {
cp5 = new ControlP5(theControlP5);
GUI(PApplet thePApplet) {
cp5 = new ControlP5(thePApplet);
}
}
```