diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java
index 4c0821d6d..fdf6a7ea7 100644
--- a/core/src/processing/core/PApplet.java
+++ b/core/src/processing/core/PApplet.java
@@ -12051,7 +12051,7 @@ public class PApplet implements PConstants {
*
* rectMode(RADIUS) also uses the first two parameters of rect()
* as the shape's center point, but uses the third and fourth parameters to
- * specify half of the shapes's width and height.
+ * specify half of the shape's width and height.
*
* The parameter must be written in ALL CAPS because Processing is a
* case-sensitive language.
@@ -12156,7 +12156,7 @@ public class PApplet implements PConstants {
*
* ellipseMode(RADIUS) also uses the first two parameters of
* ellipse() as the shape's center point, but uses the third and fourth
- * parameters to specify half of the shapes's width and height.
+ * parameters to specify half of the shape's width and height.
*
* ellipseMode(CORNER) interprets the first two parameters of
* ellipse() as the upper-left corner of the shape, while the third and
@@ -12436,7 +12436,7 @@ public class PApplet implements PConstants {
*
*
*
Advanced
- * Code submitted by Dave Bollinger (davol) for release 0136.
+ * Code submitted by Dave Bollinger (davbol) for release 0136.
*
* @webref shape:curves
* @webBrief Calculates the tangent of a point on a Bezier curve.
@@ -12557,7 +12557,7 @@ public class PApplet implements PConstants {
*
*
* @webref shape:curves
- * @webBrief Evalutes the curve at point t for points a, b, c, d.
+ * @webBrief Evaluates the curve at point t for points a, b, c, d.
* @param a coordinate of first control point
* @param b coordinate of first point on the curve
* @param c coordinate of second point on the curve
@@ -13194,7 +13194,7 @@ public class PApplet implements PConstants {
* Method to draw text from an array of chars. This method will usually be
* more efficient than drawing from a String object, because the String will
* not be converted to a char array before drawing.
- * @param chars the alphanumberic symbols to be displayed
+ * @param chars the alphanumeric symbols to be displayed
* @param start array index at which to start writing characters
* @param stop array index at which to stop writing characters
*/
@@ -13362,7 +13362,7 @@ public class PApplet implements PConstants {
* understanding the concept of a matrix stack. The pushMatrix()
* function saves the current coordinate system to the stack and
* popMatrix() restores the prior coordinate system.
- * pushMatrix() and popMatrix() are used in conjuction with
+ * pushMatrix() and popMatrix() are used in conjunction with
* the other transformation functions and may be embedded to control the
* scope of the transformations.
*
@@ -13460,7 +13460,7 @@ public class PApplet implements PConstants {
* Transformations apply to everything that happens after and subsequent
* calls to the function accumulates the effect. For example, calling
* rotate(HALF_PI) and then rotate(HALF_PI) is the same as
- * rotate(PI). All tranformations are reset when draw()
+ * rotate(PI). All transformations are reset when draw()
* begins again.
*
* Technically, rotate() multiplies the current transformation
diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java
index b2b68dcc6..a50a51979 100644
--- a/core/src/processing/core/PGraphics.java
+++ b/core/src/processing/core/PGraphics.java
@@ -2663,7 +2663,7 @@ public class PGraphics extends PImage implements PConstants {
*
* rectMode(RADIUS) also uses the first two parameters of rect()
* as the shape's center point, but uses the third and fourth parameters to
- * specify half of the shapes's width and height.
+ * specify half of the shape's width and height.
*
* The parameter must be written in ALL CAPS because Processing is a
* case-sensitive language.