Skip to content

Commit

Permalink
Fix invalid segment exception error message
Browse files Browse the repository at this point in the history
  • Loading branch information
p0lemic authored and kpicaza committed Sep 9, 2023
1 parent a111854 commit 190f380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exception/InvalidSegmentTypeGiven.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ final class InvalidSegmentTypeGiven extends InvalidArgumentException
{
public static function withType(string $segmentType): self
{
return new self(sprintf('Unknown toggle strategy type %s given.', $segmentType));
return new self(sprintf('Unknown toggle segment type %s given.', $segmentType));
}
}

0 comments on commit 190f380

Please sign in to comment.