Skip to content

Commit

Permalink
Nit: Fix mistaken case issue in MixBlendMode
Browse files Browse the repository at this point in the history
  • Loading branch information
bitspittle committed Mar 24, 2023
1 parent e17e76f commit af70ca2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class MixBlendMode private constructor(private val value: String): StyleProperty
val Lighten get() = MixBlendMode("lighten")
val ColorDodge get() = MixBlendMode("color-dodge")
val ColorBurn get() = MixBlendMode("color-burn")
val hardLight get() = MixBlendMode("hard-light")
val HardLight get() = MixBlendMode("hard-light")
val SoftLight get() = MixBlendMode("soft-light")
val Difference get() = MixBlendMode("difference")
val Exclusion get() = MixBlendMode("exclusion")
Expand Down

0 comments on commit af70ca2

Please sign in to comment.