From 22ba745cec5619aed0a8964ba72affa3f0606e47 Mon Sep 17 00:00:00 2001 From: REAS Date: Thu, 25 Jul 2019 14:52:53 -0700 Subject: [PATCH] Reference documentation for the 'str' parameter for text() --- core/src/processing/core/PApplet.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index 7f22ac357..35c3f848c 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -13220,6 +13220,8 @@ public class PApplet implements PConstants { * Newlines that are \n (Unix newline or linefeed char, ascii 10) * are honored, but \r (carriage return, Windows and Mac OS) are * ignored. + * + * @param str the String to be displayed */ public void text(String str, float x, float y) { if (recorder != null) recorder.text(str, x, y);