diff options
author | Dan Book <grinnz@grinnz.com> | 2019-10-24 16:50:28 -0400 |
---|---|---|
committer | Max Maischein <github@corion.net> | 2019-10-25 11:28:37 +0200 |
commit | eeead40bddc89e6d928ff2cb39d0e53f40476b64 (patch) | |
tree | 76e001d9e1501691ebd3bca2f13ddfd7bd89720b /pod/perlretut.pod | |
parent | 40719f1d7132aeac1fb0d3003d3554412a531f00 (diff) | |
download | perl-eeead40bddc89e6d928ff2cb39d0e53f40476b64.tar.gz |
perlretut - Missing semicolon in example
Diffstat (limited to 'pod/perlretut.pod')
-rw-r--r-- | pod/perlretut.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlretut.pod b/pod/perlretut.pod index f3af12dc73..c722d47e04 100644 --- a/pod/perlretut.pod +++ b/pod/perlretut.pod @@ -1927,7 +1927,7 @@ terminated by C<\E> or thrown over by another C<\U> or C<\L>: $x = "This word is in lower case:\L SHOUT\E"; $x =~ /shout/; # matches - $x = "I STILL KEYPUNCH CARDS FOR MY 360" + $x = "I STILL KEYPUNCH CARDS FOR MY 360"; $x =~ /\Ukeypunch/; # matches punch card string If there is no C<\E>, case is converted until the end of the |