Skip to content

Commit 80d2f04

Browse files
authored
Make references to routines actual links to their docs
1 parent 403d0fe commit 80d2f04

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/Language/py-nutshell.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ constructs and idioms.
1313
1414
=head2 Hello, world
1515
16-
Let's start with printing "Hello, world!". C<put> in Perl 6 is the
17-
equivalent of C<print> in Python. Like Python 2, parentheses are
16+
Let's start with printing "Hello, world!". L<put> in Perl 6 is the
17+
equivalent of L<print> in Python. Like Python 2, parentheses are
1818
optional. A return is added to the end of the line.
1919
2020
Python 2
@@ -31,8 +31,8 @@ Perl 6
3131
3232
put "Hello, world!"
3333
34-
There is also C<say>, which behaves similarly, but will call
35-
the C<gist> method of its argument.
34+
There is also L<say>, which behaves similarly, but will call
35+
the L<gist> method of its argument.
3636
3737
Perl 6
3838

0 commit comments

Comments
 (0)