Skip to content

Commit 3cbf2ad

Browse files
committed
Merge branch 'master' into spellcheck
2 parents 677ca27 + df49af3 commit 3cbf2ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/Language/regexes.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ you can reformat the time from C<HH:MM> to C<h:MM {AM,PM}> like so:
796796
797797
Using the modulo C<%> operator above keeps the sample code under 80 characters,
798798
but is otherwise the same as C« $0 < 12 ?? $0 !! $0 - 12 ». When combined with
799-
the power of the Parser Expression Grammars that B<really> underly what you're
799+
the power of the Parser Expression Grammars that B<really> underlies what you're
800800
seeing here, you can use "regular expressions" to parse pretty much any
801801
language out there.
802802

doc/Language/typesystem.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ that is mixed in.
9999
my $a1 = $A.new;
100100
$a1.m;
101101
say [$A ~~ R, $a1 ~~ R];
102-
OUTPUT«oi‽␤[True True]␤»
102+
# OUTPUT«oi‽␤[True True]␤»
103103
104104
=head3 Introspection
105105

0 commit comments

Comments
 (0)