Skip to content

Commit

Permalink
Fix typo in Color.java
Browse files Browse the repository at this point in the history
  • Loading branch information
nlisker authored Sep 4, 2024
1 parent 60963f8 commit 318daf5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
* Color c = Color.rgb(0,0,255); //use 0->255 integers, implicit alpha of 1.0
* Color c = Color.rgb(0,0,255,1.0); //use 0->255 integers, explicit alpha of 1.0
*
* Color c = Color.hsb(270,1.0,1.0); //hue = 270, saturation & value = 1.0. inplicit alpha of 1.0
* Color c = Color.hsb(270,1.0,1.0); //hue = 270, saturation & value = 1.0. implicit alpha of 1.0
* Color c = Color.hsb(270,1.0,1.0,1.0); //hue = 270, saturation & value = 1.0, explicit alpha of 1.0
*
* Color c = Color.web("0x0000FF",1.0);// blue as a hex web value, explicit alpha
Expand Down

0 comments on commit 318daf5

Please sign in to comment.