Skip to content

Commit 8f3445b

Browse files
committed
Fix examples compilation
1 parent b8d7984 commit 8f3445b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/Language/operators.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -929,9 +929,9 @@ L<Hash> into an argument list.
929929
sub foo( *@args ) {
930930
say @args.perl
931931
};
932-
foo( | <2 3 4>, 'a' | ' b', \( 3, 33) )
933-
# OUTPUT: «[IntStr.new(2, "2"), IntStr.new(3, "3"),\
934-
IntStr.new(4, "4"),any("a", " b"), \(3, 33)]␤»
932+
foo( | <2 3 4>, 'a' | ' b', \( 3, 33) );
933+
# OUTPUT: «[IntStr.new(2, "2"), IntStr.new(3, "3"),
934+
# IntStr.new(4, "4"),any("a", " b"), \(3, 33)]␤»
935935
foo( | \( 3, 33) ); # OUTPUT: «[3, 33]␤»
936936
937937

doc/Type/Encoding/Registry.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
=SUBTITLE Holds available encodings and allows new ones to be added.
66
7-
class Encoding::Registry { ... }
7+
class Encoding::Registry {}
88
99
C<Encoding::Registry> is initialized with a list of encoding that is
1010
available for any Perl 6 application, namely:

0 commit comments

Comments
 (0)