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

Fixed error in references #5251

Merged
merged 4 commits into from
May 24, 2021
Merged
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -2598,6 +2598,15 @@
"contributions": [
"bug"
]
},
{
"login": "aLyonsGH",
"name": "Alex Lyons",
"avatar_url": "https://avatars.githubusercontent.com/u/52976155?s=400&u=e1dde38fbd983995c459ec3d1f999193bd1e132e&v=4",
"profile": "https://github.com/aLyonsGH",
"contributions": [
"docs"
]
}
],
"repoType": "github",
Expand Down
2 changes: 1 addition & 1 deletion src/color/creating_reading.js
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ p5.prototype.hue = function(c) {
/**
* Blends two colors to find a third color somewhere between them. The amt
* parameter is the amount to interpolate between the two values where 0.0
* equal to the first color, 0.1 is very near the first color, 0.5 is halfway
* is equal to the first color, 0.1 is very near the first color, 0.5 is halfway
* in between, etc. An amount below 0 will be treated as 0. Likewise, amounts
* above 1 will be capped at 1. This is different from the behavior of <a href="#/p5/lerp">lerp()</a>,
* but necessary because otherwise numbers outside the range will produce
Expand Down