Skip to content

Commit 3211fd4

Browse files
authored
Merge pull request #7322 from asukaminato0721/fix-typo-in-vec-mult
fix typo
2 parents 78c4442 + d736500 commit 3211fd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/math/p5.Vector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ p5.Vector = class {
791791
*
792792
* If only one value is provided, as in `v.mult(2)`, then all the components
793793
* will be multiplied by 2. If a value isn't provided for a component, it
794-
* won't change. For example, `v.mult(4, 5)` multiplies `v.x` by, `v.y` by 5,
794+
* won't change. For example, `v.mult(4, 5)` multiplies `v.x` by 4, `v.y` by 5,
795795
* and `v.z` by 1. Calling `mult()` with no arguments, as in `v.mult()`, has
796796
* no effect.
797797
*

0 commit comments

Comments
 (0)