Skip to content

Commit

Permalink
Spelling/typo fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
cfa committed Feb 7, 2019
1 parent 5d80ef5 commit 048a52a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doc/Language/containers.pod6
Expand Up @@ -7,7 +7,7 @@
This section explains the levels of indirection involved in dealing with
variables and container elements. The difference types of containers used in
Perl 6 are explained and the actions applicable to them like assigning, binding
and flattening. More advanced topics like self-referencial data, type
and flattening. More advanced topics like self-referential data, type
constraints and custom containers are discussed at the end.
=head1 What is a variable?
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/glossary.pod6
Expand Up @@ -958,7 +958,7 @@ L<#lvalue>.
=head1 X<SAP>
Stands for "Specification APendices". The
Stands for "Specification APpendices". The
L<SAP|https://github.com/perl6/roast/tree/master/APPENDICES> includes
optional tests that implementations may choose to follow, but don't
necessarily have to.
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/list.pod6
Expand Up @@ -287,7 +287,7 @@ X<|laziness in Iterable objects>
=head1 Lazy lists
C<List>s, C<Seq>s (and any class that subclasses them, like C<Array>s) and any
other class thet implements the L<Iterable|/type/Iterable> role can be lazy, which means that
other class that implements the L<Iterable|/type/Iterable> role can be lazy, which means that
their values are computed on demand and stored for later use. To create a lazy
object use L<gather/take|/language/control#gather/take> or the L<sequence
operator|/language/operators#infix_...>. You can also write a class that
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/objects.pod6
Expand Up @@ -599,7 +599,7 @@ After the C<BUILD> methods have been called, methods named C<TWEAK> are
called, if they exist, again with all the named arguments that were passed
to C<new>. See an example of its use below.
Due to the default behavior of C<BUILD> annd C<TWEAK> submethods, named
Due to the default behavior of C<BUILD> and C<TWEAK> submethods, named
arguments to the constructor C<new> derived from C<Mu> can
correspond directly to public attributes of any of the classes in the method
resolution order, or to any named parameter of any C<BUILD> or C<TWEAK>
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/regexes.pod6
Expand Up @@ -540,7 +540,7 @@ not be backtracked:
Without the C<:> following C<\w+>, the I<ID> part captured would have been
simply C<T>, since the pattern would go ahead and match everything, leaving a
single letter to match the C<\w+> expression at the end of tne line.
single letter to match the C<\w+> expression at the end of the line.
=head2 X<Greedy versus frugal quantifiers: C<?>|regex,?>
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/testing.pod6
Expand Up @@ -153,7 +153,7 @@ case when it does not.
=head1 Testing modules
Modules are temptatively loaded with L<C<use-ok>|/type/Test#use-ok>, which fails
Modules are tentatively loaded with L<C<use-ok>|/type/Test#use-ok>, which fails
if they fail to load.
=head1 Testing exceptions
Expand Down

0 comments on commit 048a52a

Please sign in to comment.