diff --git a/src/Exceptions/InvalidColorValue.php b/src/Exceptions/InvalidColorValue.php index bff82c1..60a000d 100644 --- a/src/Exceptions/InvalidColorValue.php +++ b/src/Exceptions/InvalidColorValue.php @@ -70,7 +70,7 @@ public static function malformedHslColorString(string $string): self public static function malformedHslaColorString(string $string): self { - return new static("Hsla color string `{$string}` is malformed. An hsla color contains hue, saturation, lightness and alpha values, wrapped in `hsl()`, e.g. `hsl(300,10%,50%,0.25)`."); + return new static("Hsla color string `{$string}` is malformed. An hsla color contains hue, saturation, lightness and alpha values, wrapped in `hsla()`, e.g. `hsla(300,10%,50%,0.25)`."); } public static function malformedRgbColorString(string $string): self