Skip to content

Commit 17251d3

Browse files
committed
Fix some of xtest errors
1 parent 7474b45 commit 17251d3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

doc/Language/5to6-perlop.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ The following example shows the effects of all the above range operators
178178
179179
In Perl 5, in scalar context, the operators C<..> and C<...> work
180180
as flip-flop operators, even if they are little-known and probably
181-
less used. Those oeprators have been replaced in Perl 6
181+
less used. Those operators have been replaced in Perl 6
182182
by L<ff|/routine/ff> and L<fff|/routine/fff> respectively.
183183
184184
=head2 Conditional Operator

doc/Language/packages.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ MyType::<$foo>
181181
182182
=head2 Class member lookup
183183
184-
Methods—including autogenerated methods, such as public attributes' accessors—are stored
184+
Methods—including auto-generated methods, such as public attributes' accessors—are stored
185185
in the class meta object and can be looked up through by the L<lookup|/method/lookup> method.
186186
187187
=for code :skip-test

doc/Language/subscripts.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ In particular the I<type> can be any of the following:
222222
223223
The notable difference between C<*> and Zen slice (empty) is that the L<Whatever> star
224224
will cause full L<reification|/language/glossary#index-entry-Reify>, while Zen slice won't.
225-
Both versions also L<decont|https://perl6advent.wordpress.com/2017/12/02/perl-6-sigils-variables-and-containers/#decont>.
225+
Both versions also L<de-cont|https://perl6advent.wordpress.com/2017/12/02/perl-6-sigils-variables-and-containers/#decont>.
226226
227227
So even a one-element list returns a slice, whereas a bare scalar value doesn't:
228228

doc/Language/variables.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ X<|$*SPEC>X<|$*TMPDIR>X<|$*THREAD>X<|$*SCHEDULER>X<|$*USAGE>
10931093
$*ARGFILES | An L<IO::ArgFiles> (an empty subclass of L<IO::CatHandle>)
10941094
| that uses C<@*ARGS> as source files, if
10951095
| it contains any files, or C<$*IN> otherwise. When C<$*IN>
1096-
| is used, its C<:nl-in>, C<:chomp>, C<:encoding>,
1096+
| is used, its C<:nl-in>, C<:chomp>, C<:encoding>,
10971097
| and C<:bin> will be set on the L<IO::ArgFiles> object.
10981098
------------------+--------------------------------------------
10991099
@*ARGS | Arguments from the command line.

0 commit comments

Comments
 (0)