Skip to content

Commit

Permalink
(feat) fix: variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Cage committed Jul 7, 2021
1 parent 42f0d9f commit 798fb12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/hslStringfy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
* Put HSL into a string
*/
export default function hslStringfy(h: number, s: number, l: number): string {
return `hsl(${r}, ${g}%, ${b}%)`;
return `hsl(${h}, ${s}%, ${l}%)`;
}

0 comments on commit 798fb12

Please sign in to comment.