Skip to content

Commit 8f538f5

Browse files
committed
perlrecharclass: Fix typo
1 parent f91ad03 commit 8f538f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pod/perlrecharclass.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ place before the bracketed class is parsed:
528528

529529
$, = "\t| ";
530530
$x =~ m'[$,]'; # single-quotish: matches '$' or ','
531-
$x =~ q{[$,]}' # same
531+
$x =~ q{[$,]}; # same
532532
$x =~ m/[$,]/; # double-quotish: Because we made an
533533
# assignment to $, above, this now
534534
# matches "\t", "|", or " "

0 commit comments

Comments
 (0)