Skip to content

Commit f58d067

Browse files
committed
correct comment
1 parent c8e18d3 commit f58d067

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

coloraide/spaces/hwb/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212

1313

1414
def hsv_to_hwb(hsv: Vector) -> Vector:
15-
"""HWB to sRGB."""
15+
"""HSV to HWB."""
1616

1717
h, s, v = hsv
1818
return [util.constrain_hue(h), (1 - s) * v, 1 - v]
1919

2020

2121
def hwb_to_hsv(hwb: Vector) -> Vector:
22-
"""HWB to sRGB."""
22+
"""HWB to HSV."""
2323

2424
h, w, b = hwb
2525
wb = w + b

0 commit comments

Comments
 (0)