Skip to content

Commit 066b3ba

Browse files
committed
index \ in 4 different spots
1 parent d9a6d8e commit 066b3ba

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

doc/Language/containers.pod6

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ changes the contents of the other.
123123
You've seen this situation before: it is exactly what happened with the
124124
signature parameter marked as C<is rw>.
125125
126+
X<|\,container binding
126127
Sigilless variables also bind by default and so do parameters with the trait C<is raw>.
127128
128129
my $a = 42;

doc/Language/quoting.pod6

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ L<say> B<">My favorite color is B<$color>!B<">
7474
7575
My favorite color is blue!
7676
77+
X<|\,quoting>
7778
The C<qq> form -- usually written using double quotes -- allows for
7879
interpolation of backslash sequences and variables, i.e., variables can be
7980
written within the string so that the content of the variable is inserted into

doc/Language/variables.pod6

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ C<$num = 42> is not is own separate expression.
126126
See L<operators|/language/operators> for more details on precedence.
127127
128128
=head2 Sigilless variables
129+
X<|\,sigilless variables>
129130
130131
It is possible to create "variables" in Perl 6 that do not have sigils:
131132

doc/Type/Scalar.pod6

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ alter the value of both variables by altering only one of them:
6868
$b = 2;
6969
$a.say; # says "2"
7070
71+
X<|\,sigilless scalar>
7172
SSA-style constants bind directly to their value with no
7273
intervening C<Scalar>, even when C<=>/assignment is used. They may
7374
be forced to use a C<Scalar> by assigning a C<$>-sigiled variable

0 commit comments

Comments
 (0)