From 665b0c1aa5b711c76fe6af4ff5216e1aceace51a Mon Sep 17 00:00:00 2001 From: sojamo Date: Fri, 4 Sep 2015 15:12:40 +0800 Subject: [PATCH] readme typo fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4989c06..01a2da0 100644 --- a/README.md +++ b/README.md @@ -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); } } ```