Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo #7322

Merged
merged 1 commit into from
Oct 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/math/p5.Vector.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
Loading