Skip to content

Commit 6b834c7

Browse files
committed
Make code compile
1 parent 7794df4 commit 6b834c7

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

doc/Language/pod.pod6

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -610,14 +610,10 @@ for $=pod -> $pod-item {
610610
producing the following output:
611611
612612
=for code
613-
Pod::Heading.new(level => 1, config => {}, contents => [Pod::Block::Para.new(config => {}, contents => ["This is an head1 title"])])
614-
Pod::Block::Para.new(config => {}, contents => ["This is a paragraph."])
615-
Pod::Heading.new(level => 2, config => {}, contents => [Pod::Block::Para.new(config => {}, contents => ["Subsection"])])
616-
Pod::Block::Para.new(config => {}, contents => ["Here some text for the subsection."])
617-
618-
619-
620-
613+
Pod::Heading.new(level => 1, config => {}, contents => [Pod::Block::Para.new(config => {}, contents => ["This is an head1 title"])]);
614+
Pod::Block::Para.new(config => {}, contents => ["This is a paragraph."]);
615+
Pod::Heading.new(level => 2, config => {}, contents => [Pod::Block::Para.new(config => {}, contents => ["Subsection"])]);
616+
Pod::Block::Para.new(config => {}, contents => ["Here some text for the subsection."]);
621617
=end pod
622618

623619
# vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6

0 commit comments

Comments
 (0)