Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
a → an (#2604)
  • Loading branch information
cfa committed Feb 3, 2019
1 parent 2c79560 commit 675330d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions doc/Language/5to6-nutshell.pod6
Expand Up @@ -325,7 +325,7 @@ store non-lexical variables, filehandles, subs, and formats.
N<This should not be confused with the Perl 5 built-in C<glob()> function,
which reads filenames from a directory.>
You are most likely to encounter a GLOB in code written on a early Perl
You are most likely to encounter a GLOB in code written on an early Perl
version that does not support lexical filehandles, when a filehandle needed
to be passed into a sub.
Expand Down Expand Up @@ -1274,7 +1274,7 @@ say $foo * $bar; # uses native integer multiplication
=head3 C<lib>
Manipulate where modules are looked up at compile time. The underlying logic is
B<very> different from Perl 5, but in the case you are using a equivalent
B<very> different from Perl 5, but in the case you are using an equivalent
syntax, C<use lib> in Perl 6 works the same as in Perl 5.
=head3 C<mro>
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/5to6-perlfunc.pod6
Expand Up @@ -1582,7 +1582,7 @@ the function is required.
=item seek FILEHANDLE, POSITION, WHENCE
Not documented in a any real way yet, but listed as a method of the
Not documented in any real way yet, but listed as a method of the
C<IO::Handle> class.
The Perl 6 ecosystem has a module L<C<P5seek>|https://modules.perl6.org/dist/P5seek>
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/list.pod6
Expand Up @@ -466,7 +466,7 @@ which is selecting the 4 to 6th element from the three first dimensions (C<^3>)
=head2 Range as slice
A L<C<Range>|/type/Range> is a container for a lower and a upper boundary.
A L<C<Range>|/type/Range> is a container for a lower and an upper boundary.
Generating a slice with a C<Range> will include any index between those bounds,
including the bounds. For infinite upper boundaries we agree with
mathematicians that C<Inf> equals C<Inf-1>.
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/Distribution.pod6
Expand Up @@ -11,7 +11,7 @@ its represents. Objects that fulfill the C<Distribution> role can be read by
e.g. L<CompUnit::Repository::Installation>. Generally a C<Distribution> provides
read access to a set of modules and metadata. These may be backed by the
filesystem (L<Distribution::Path>, L<Distribution::Hash>) but could also read
from a e.g. tar file or socket.
from an e.g. tar file or socket.
=head1 Required Methods
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/Hash.pod6
Expand Up @@ -250,7 +250,7 @@ index:
(my %inv).push: %wc.invert;
say %inv; # OUTPUT: «{322 => pair, 323 => [pipe hash]}␤»
Note that such a initialization could also be written as
Note that such an initialization could also be written as
my %wc = 'hash' => 323, 'pair' => 322, 'pipe' => 323;
my %inv .= push: %wc.invert;
Expand Down
4 changes: 2 additions & 2 deletions doc/Type/Range.pod6
Expand Up @@ -52,7 +52,7 @@ for 1..∞ { .say }; # the same
=head2 Ranges in subscripts
A Range can be used in a subscript to get a range of values. Please note that
assigning a Range to a scalar container turns the Range into a item. Use
assigning a Range to a scalar container turns the Range into an item. Use
binding, @-sigiled containers or a slip to get what you mean.
my @numbers = <4 8 15 16 23 42>;
Expand Down Expand Up @@ -345,4 +345,4 @@ Returns a pseudo-random value belonging to the range.
=end pod

# vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6
# vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6

0 comments on commit 675330d

Please sign in to comment.