Skip to content

Commit e520ab6

Browse files
committed
prefer rakudoc >> pod6
Part of #3785
1 parent 9ffd785 commit e520ab6

File tree

4 files changed

+52
-52
lines changed

4 files changed

+52
-52
lines changed

doc/Language/about.rakudoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ All of the paragraphs and blocks following that directive, up until the
8383
next directive of the same level, will be considered part of the
8484
documentable. So, in:
8585

86-
=begin code :allow<R> :lang<pod6>
86+
=begin code :allow<R> :lang<rakudoc>
8787
=head2 R<My Definition>
8888

8989
Some paragraphs, followed by some code:
@@ -152,7 +152,7 @@ with or without code formatting (B<V< C<> >>). Due to current parser
152152
limitations, special steps have to be taken to use B<V< X<> >> with other
153153
formatting codes; for example:
154154

155-
=begin code :lang<pod6>
155+
=begin code :lang<rakudoc>
156156
=item X<B<foo>|Subroutines,foo> a fancy subroutine
157157
=end code
158158

doc/Language/modules.rakudoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ structure as the C<lib> directory like so:
802802
=begin code :lang<text>
803803
doc
804804
└── Vortex
805-
└── TotalPerspective.pod6
805+
└── TotalPerspective.rakudoc
806806
=end code
807807
N<Note, described above is a minimal project directory. If your project
808808
contains scripts that you'd like distributed along with your module(s),

doc/Language/operators.rakudoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -750,10 +750,10 @@ it independent of the container type.
750750
=begin code :skip-test<need to mock JSON::Tiny>
751751
use JSON::Tiny;
752752

753-
my $config = from-json('{ "files": 3, "path": "/home/some-user/raku.pod6" }');
754-
say $config.raku; # OUTPUT: «${:files(3), :path("/home/some-user/raku.pod6")}␤»
753+
my $config = from-json('{ "files": 3, "path": "/home/some-user/raku.rakudoc" }');
754+
say $config.raku; # OUTPUT: «${:files(3), :path("/home/some-user/raku.rakudoc")}␤»
755755
my %config-hash = $config<>;
756-
say %config-hash.raku; # OUTPUT: «{:files(3), :path("/home/some-user/raku.pod6")}␤»
756+
say %config-hash.raku; # OUTPUT: «{:files(3), :path("/home/some-user/raku.rakudoc")}␤»
757757
=end code
758758

759759
It's a C<Hash> in both cases, and it can be used like that; however, in the

0 commit comments

Comments
 (0)