Skip to content

Commit

Permalink
fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Jan 16, 2025
1 parent 37fe259 commit 3b4cf13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/Lint.pm
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ sub validate_env {
die('Missing mandatory env param: PATH_INFO');
}
if ($env->{PATH_INFO} ne '' && $env->{PATH_INFO} !~ m!^/!) {
die('PATH_INFO must begin with / ($env->{PATH_INFO})');
die("PATH_INFO must begin with / ($env->{PATH_INFO})");
}
unless (defined($env->{SERVER_NAME})) {
die('Missing mandatory env param: SERVER_NAME');
Expand Down

0 comments on commit 3b4cf13

Please sign in to comment.