From d736500e081f803beffb513a225327e377767ea7 Mon Sep 17 00:00:00 2001 From: Asuka Minato Date: Sun, 20 Oct 2024 22:21:34 +0900 Subject: [PATCH] fix typo --- src/math/p5.Vector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/p5.Vector.js b/src/math/p5.Vector.js index 11ba9bb97c..1f567837ce 100644 --- a/src/math/p5.Vector.js +++ b/src/math/p5.Vector.js @@ -791,7 +791,7 @@ p5.Vector = class { * * If only one value is provided, as in `v.mult(2)`, then all the components * will be multiplied by 2. If a value isn't provided for a component, it - * won't change. For example, `v.mult(4, 5)` multiplies `v.x` by, `v.y` by 5, + * won't change. For example, `v.mult(4, 5)` multiplies `v.x` by 4, `v.y` by 5, * and `v.z` by 1. Calling `mult()` with no arguments, as in `v.mult()`, has * no effect. *