Skip to content
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
4 changes: 2 additions & 2 deletions src/accessibility/color_namer.js
Original file line number Diff line number Diff line change
Expand Up @@ -702,9 +702,9 @@ function _calculateColor(hsb) {
return colortext;
}

//gets rgba and returs a color name
//gets rgba and returns a color name
p5.prototype._rgbColorName = function(arg) {
//conversts rgba to hsb
//converts rgba to hsb
let hsb = color_conversion._rgbaToHSBA(arg);
//stores hsb in global variable
originalHSB = hsb;
Expand Down