We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a2b6eb commit ff57738Copy full SHA for ff57738
pod/perlunicook.pod
@@ -419,7 +419,7 @@ properties for use in regexes.
419
&utf8::IsTitle
420
END_OF_SET
421
422
- if (/\p{Is_GraecoRoman_Title}/ { ... }
+ if (/\p{Is_GraecoRoman_Title}/) { ... }
423
424
=head2 ℞ 27: Unicode normalization
425
@@ -519,7 +519,7 @@ we print out both forms:
519
my $gcs = Unicode::GCString->new($str);
520
my $cols = $gcs->columns;
521
my $pad = " " x (10 - $cols);
522
- say str, $pad, " |";
+ say $str, $pad, " |";
523
}
524
525
generates this to show that it pads correctly no matter
0 commit comments