From 6c03b3e48c14eeb4d136d81028c4563aeef747fb Mon Sep 17 00:00:00 2001 From: robog-two <77205106+robog-two@users.noreply.github.com> Date: Wed, 8 Jun 2022 02:45:12 -0500 Subject: [PATCH] (Docs) Fix unclosed tag in noSmooth() Moved here from a PR on the website to ensure the change is more permanent. --- core/src/processing/core/PApplet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index 35525cfa6..efab370fc 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -1192,7 +1192,7 @@ public class PApplet implements PConstants { * edges and images with hard edges between the pixels * when enlarged rather than interpolating pixels. Note * that smooth() is active by default, so it is necessary - * to call noSmooth() to disable smoothing of geometry, + * to call noSmooth() to disable smoothing of geometry, * fonts, and images. Since the release of Processing 3.0, * the noSmooth() function can only be run once for each * sketch, either at the top of a sketch without a setup(),