Skip to content

Commit 6e390bd

Browse files
committed
Fixes description of archname
Thanks for the report. Closes #2557
1 parent fe72b23 commit 6e390bd

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

doc/Language/variables.pod6

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
55
=SUBTITLE Variables in Perl 6
66
7-
Variable names can start with or without a special character called a
8-
I<sigil>, followed optionally by a second special character named
9-
I<twigil> and then an L<identifier|/language/syntax#Identifiers>.
10-
Variables are symbolic names for values or
11-
L<containers|/language/containers>. Variable declarations or assignment
12-
of values may create a container on the fly.
7+
Variables are symbolic names for values or L<containers|/language/containers>.
8+
Variable declarations or assignment of values may create a container on the fly.
9+
Variable names can start with or without a special character called a I<sigil>,
10+
followed optionally by a second special character named I<twigil> and then an
11+
L<identifier|/language/syntax#Identifiers>.
12+
1313
1414
=head1 Sigils
1515
X<|sigil,$>X<|sigil,@>X<|sigil,%>X<|sigil,&>
@@ -1312,13 +1312,13 @@ from GMT.
13121312
X<|$*CWD>
13131313
=head4 C<$*CWD>
13141314
1315-
It contains the Current Working Directory.
1315+
It contains the C<C>urrent C<W>orking C<D>irectory.
13161316
13171317
X<|$*KERNEL>
13181318
=head4 C<$*KERNEL>
13191319
1320-
C<$*KERNEL> contains an L<object|/type/Kernel> that is stringified to the current running
1321-
kernel.
1320+
C<$*KERNEL> contains a L<C<Kernel> instance|/type/Kernel>, the C<.gist> of it
1321+
being the current running kernel.
13221322
13231323
say $*KERNEL; # OUTPUT: «linux (4.4.92.31.default)␤»
13241324

doc/Type/Kernel.pod6

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ Kernel object. Dies if the "arch" could not be established.
2222
2323
method archname(--> Str)
2424
25-
Instance method returning the concatenation of L<hardware|/routine/hardware> and L<arch|/routine/arch>.
25+
Instance method returning the concatenation of L<hardware|/routine/hardware> and
26+
L<name|/routine/name>.
2627
2728
=head2 method auth
2829
@@ -114,4 +115,4 @@ See Also: L<Systemic|/type/Systemic>
114115
115116
=end pod
116117

117-
# vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6
118+
# vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6

0 commit comments

Comments
 (0)