Skip to content

Commit 422f037

Browse files
committedSep 13, 2024
Fix a typo
1 parent 4db68a1 commit 422f037

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/src/value/color/channel.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class ColorChannel {
4242
/// [analogous]: https://www.w3.org/TR/css-color-4/#interpolation-missing
4343
bool isAnalogous(ColorChannel other) => switch ((name, other.name)) {
4444
("red" || "x", "red" || "x") ||
45-
("green" || "y", "gren" || "y") ||
45+
("green" || "y", "green" || "y") ||
4646
("blue" || "z", "blue" || "z") ||
4747
("chroma" || "saturation", "chroma" || "saturation") ||
4848
("lightness", "lightness") ||

0 commit comments

Comments
 (0)
Please sign in to comment.