Skip to content

Commit 8764b25

Browse files
authored
Merge pull request #5251 from aLyonsGH/main
Fixed error in references
2 parents ea772aa + dab3755 commit 8764b25

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.all-contributorsrc

+9
Original file line numberDiff line numberDiff line change
@@ -2598,6 +2598,15 @@
25982598
"contributions": [
25992599
"bug"
26002600
]
2601+
},
2602+
{
2603+
"login": "aLyonsGH",
2604+
"name": "Alex Lyons",
2605+
"avatar_url": "https://avatars.githubusercontent.com/u/52976155?s=400&u=e1dde38fbd983995c459ec3d1f999193bd1e132e&v=4",
2606+
"profile": "https://github.com/aLyonsGH",
2607+
"contributions": [
2608+
"docs"
2609+
]
26012610
}
26022611
],
26032612
"repoType": "github",

src/color/creating_reading.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ p5.prototype.hue = function(c) {
361361
/**
362362
* Blends two colors to find a third color somewhere between them. The amt
363363
* parameter is the amount to interpolate between the two values where 0.0
364-
* equal to the first color, 0.1 is very near the first color, 0.5 is halfway
364+
* is equal to the first color, 0.1 is very near the first color, 0.5 is halfway
365365
* in between, etc. An amount below 0 will be treated as 0. Likewise, amounts
366366
* above 1 will be capped at 1. This is different from the behavior of <a href="#/p5/lerp">lerp()</a>,
367367
* but necessary because otherwise numbers outside the range will produce

0 commit comments

Comments
 (0)