diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index 9f3486a10d..4cb01184b3 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -913,7 +913,7 @@ void handleSettings() { * Processing Development Environment (PDE). For example, when * using the Eclipse code editor, it's necessary to use * settings() to define the size() and - * smooth() values for a sketch.. + * smooth() values for a sketch. *

* The settings() method runs before the sketch has been * set up, so other Processing functions cannot be used at that diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java index 9e3205c69a..0b9f0d2ed4 100644 --- a/core/src/processing/core/PGraphics.java +++ b/core/src/processing/core/PGraphics.java @@ -2496,7 +2496,7 @@ protected void curveVertexSegment(float x1, float y1, float z1, *
* Using point() with strokeWeight(1) or smaller may draw nothing to the screen, * depending on the graphics settings of the computer. Workarounds include - * setting the pixel using set() or drawing the point using either + * setting the pixel using set() or drawing the point using either * circle() or square(). * * @webref shape:2d primitives @@ -3559,8 +3559,8 @@ public float curvePoint(float a, float b, float c, float d, float t) { /** * Calculates the tangent of a point on a curve. There's a good definition - * of tangent on Wikipedia. + * of tangent on Wikipedia. * *

Advanced

* Code thanks to Dave Bollinger (Bug #715) @@ -6252,7 +6252,7 @@ public float modelZ(float x, float y, float z) { *

* The style information controlled by the following functions are included * in the style: - * fill(), stroke(), tint(), strokeWeight(), strokeCap(),strokeJoin(), + * fill(), stroke(), tint(), strokeWeight(), strokeCap(),strokeJoin(), * imageMode(), rectMode(), ellipseMode(), shapeMode(), colorMode(), * textAlign(), textFont(), textMode(), textSize(), textLeading(), * emissive(), specular(), shininess(), ambient() @@ -6439,7 +6439,7 @@ public PStyle getStyle(PStyle s) { // ignore *
* Using point() with strokeWeight(1) or smaller may draw nothing to the screen, * depending on the graphics settings of the computer. Workarounds include - * setting the pixel using set() or drawing the point using either + * setting the pixel using set() or drawing the point using either * circle() or square(). * * @webref shape:attributes