]> git.lizzy.rs Git - nothing.git/commitdiff
Add TODO(#928)
authorrexim <reximkut@gmail.com>
Mon, 1 Jul 2019 18:23:14 +0000 (01:23 +0700)
committerrexim <reximkut@gmail.com>
Mon, 1 Jul 2019 18:23:14 +0000 (01:23 +0700)
src/color.c

index 24e50dc8dd11f8f976920151a2b317f91f8b6629..7f3b65d1841d1d654212d88d590c8fb0fd2deef2 100644 (file)
@@ -15,7 +15,7 @@ Color rgba(float r, float g, float b, float a)
     return result;
 }
 
-/* TODO: Should the Hue in HSLA representation be in degrees? */
+/* TODO(#928): Should the Hue in HSLA representation be in degrees? */
 Color hsla(float h, float s, float l, float a)
 {
     h = fmodf(h, 360.0f);