Skip to content

Commit ff833e0

Browse files
committed
fix minor typos
1 parent 1fb27c0 commit ff833e0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/Language/mop.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ as well. So if you write C<my $t = MyType; ... ; $t.^compose> you are
199199
composing the Scalar that the C<$>-sigiled variable implies, not C<MyType>.
200200
201201
The consequence is that you need to have a rather detailed understanding of
202-
the subleties of Perl 6 in order to avoid pitfalls when working with the MOP,
202+
the subtleties of Perl 6 in order to avoid pitfalls when working with the MOP,
203203
and can't expect the same "do what I mean" convenience that ordinary Perl 6
204204
code offers.
205205

doc/Language/operators.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ X<Hyper method call operator>. Will call a method on all elements of a C<List> o
546546
my @b = @a».ord; # [97, 98, 99]
547547
sub foo(Str:D $c){ $c.ord * 2 }; # The first parameter of a method is the invocant.
548548
say @a».&foo; # So we can pretend to have a method call with a sub that got a good first positional argument.
549-
say @a».&({ .ord}); # Blocks have an implicit positional arguments that lands in $_. The latter can be obmitted for method calls.
549+
say @a».&({ .ord}); # Blocks have an implicit positional arguments that lands in $_. The latter can be omitted for method calls.
550550
551551
=head2 X«postfix C<.postfix>
552552
|postfix,.postfix;postcircumfix,.( );postcircumfix,.[ ];postcircumfix,.{ };postcircumfix,.< >»

doc/Type/IO/Special.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This returns a string which identifies the object.
3131
3232
method Str(IO::Special:D:)
3333
34-
This returns '<STDIN>', '<STDOUT>' or '<STDERR>' as approriate.
34+
This returns '<STDIN>', '<STDOUT>' or '<STDERR>' as appropriate.
3535
3636
=head2 method IO
3737

0 commit comments

Comments
 (0)