Skip to content

Commit 3b4cf13

Browse files
committed
fix quotes
1 parent 37fe259 commit 3b4cf13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Plack/Middleware/Lint.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ sub validate_env {
4343
die('Missing mandatory env param: PATH_INFO');
4444
}
4545
if ($env->{PATH_INFO} ne '' && $env->{PATH_INFO} !~ m!^/!) {
46-
die('PATH_INFO must begin with / ($env->{PATH_INFO})');
46+
die("PATH_INFO must begin with / ($env->{PATH_INFO})");
4747
}
4848
unless (defined($env->{SERVER_NAME})) {
4949
die('Missing mandatory env param: SERVER_NAME');

0 commit comments

Comments
 (0)