Skip to content

Commit 8079e0b

Browse files
committed
Fix typos.
1 parent 707e63e commit 8079e0b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

doc/Language/5to6-nutshell.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ loop using the C<.lines> method.
756756
Note first this common misunderstanding about the C<for> and C<foreach>
757757
keywords. Many programmers think that they distinguish between the C-style
758758
three-expression form and the list-iterator form; they do not! In fact,
759-
they keywords are interchangeable; the Perl 5 compiler looks for the
759+
the keywords are interchangeable; the Perl 5 compiler looks for the
760760
semi-colons within the parens to determine which type of loop to parse.
761761
762762
The C-style three-factor form now uses the C<loop> keyword, and is

doc/Language/glossary.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ Don't Repeat Yourself
467467
468468
=head2 DWIM
469469
470-
Do What I Mean. A programmng language designer motto.
470+
Do What I Mean. A programming language designer motto.
471471
472472
=head2 flap
473473

doc/Language/list.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ eye sore than a benefit to the user. Basically, when you see a square bracket,
406406
remember the invisible dollar signs.
407407
408408
Second, remember that these invisible dollar signs also protect against
409-
flattenning, so you cannot really flatten the elements inside of an Array
409+
flattening, so you cannot really flatten the elements inside of an Array
410410
with a normal call to C<flat> or C<.flat>.
411411
412412
((1,2),$(3,4)).flat.perl.say; # (1, 2, $(3, 4)).Seq

doc/Language/nativecall.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ keep the value it acquires when the module gets precompiled.
392392
393393
=head2 ABI/API Version
394394
395-
If you write C<native('foo')> NativeCall will search libfoo.so under Unix like system (libfoo.dynlib on Os X, foo.dll on win32).
395+
If you write C<native('foo')> NativeCall will search libfoo.so under Unix like system (libfoo.dynlib on OS X, foo.dll on win32).
396396
In most modern system it will require you or the user of your module to install
397397
the development package because it's recommended to always provide an API/ABI version to a
398398
shared library, so libfoo.so ends often being a symbolic link provided only by a devel package.

doc/Type/Callable.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ L<Routine>, L<Sub>, L<Method>, L<Submethod> and L<Macro> types.
1212
Callables can be stored in C<&>-sigiled containers, the default type constraint
1313
of such a container is C<Callable>. A signature object can be used to
1414
force a check against the signature of the Callable to be stored into the
15-
congtainer.
15+
container.
1616
1717
my &a = {};
1818
my &b = -> {};

doc/Type/IO.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ outputs
4545
4646
=head2 sub say
4747
48-
Print the given text in human readable form, followed by a C<$*OUT.nl-out> (platform dependent newline) on C<$*OUT> (standard output). Long output may be truncted. For machine readable output use C<put>.
48+
Print the given text in human readable form, followed by a C<$*OUT.nl-out> (platform dependent newline) on C<$*OUT> (standard output). Long output may be truncated. For machine readable output use C<put>.
4949
5050
With C<say>, the example code as mentioned in the C<print> section will be
5151
displayed as the user likely intended:

0 commit comments

Comments
 (0)