Skip to content

Commit

Permalink
Fix typo in exception message about invalid path parameters (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaBehrens committed Oct 2, 2023
1 parent a3d04f0 commit ea373a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Uri.php
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ private static function assertValidPath(string $mimetype, string $parameters, st

$res = array_filter(array_filter(explode(';', $parameters), self::validateParameter(...)));
if ([] !== $res) {
throw new SyntaxError('The path paremeters `'.$parameters.'` is invalid.');
throw new SyntaxError('The path parameters `'.$parameters.'` is invalid.');
}

if (!$isBinary) {
Expand Down

0 comments on commit ea373a5

Please sign in to comment.