Skip to content

Commit 51f3789

Browse files
committed
Fix typos; MasterDuke++
1 parent 7628708 commit 51f3789

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/Language/glossary.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ In English language, L<reify means|http://www.dictionary.com/browse/reify> to
758758
similar, in that conceptual things, like "elements of an infinite list" get
759759
I<reified> when you try to operate on some of them:
760760
761-
# A list containing innfinite number of unreified Fibonacci numbers:
761+
# A list containing infinite number of unreified Fibonacci numbers:
762762
my @fibonacci = 1, 1, * + * … ∞;
763763
764764
# We reify 10 of them, looking up the first 10 of them with array index:
@@ -812,12 +812,12 @@ already-reified elements from the L<Seq>'s cache.
812812
813813
Note that above we assigned the C<gather> to a L<Scalar> container (the C<$>
814814
sigil), not the L<Positional> one (the C<@> sigil). The reason is that the
815-
C<@>-sigiled variables are I<mostly lazy>. What this means is their
815+
C<@>-sigiled variables are I<mostly lazy>. What this means is they
816816
I<reify the stuff assigned to them> right away I<most of the time>. The only
817817
time they don't do it is when the items are known to be
818818
L«C<is-lazy>|/routine/is-lazy», like our sequence generated with infinity as the
819-
end point. We we to assign the C<gather> to a C<@>-variable, the C<say> statements
820-
inside of it would've been printed right away.
819+
end point. Were we to assign the C<gather> to a C<@>-variable, the C<say>
820+
statements inside of it would've been printed right away.
821821
822822
Another way to fully-riefy a list, is by calling L«C<.elems>|/routine/elems» on
823823
it. This is the reason why checking whether a list contains any items is best

doc/Language/traps.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ language.
2222
2323
=head2 Constants are Compile Time
2424
25-
Constants are computed at compile time, so if use them in modules keep in mind
25+
Constants are computed at compile time, so if you use them in modules keep in mind
2626
their values will be frozen due to pre-compilation:
2727
2828
# WRONG (most likely):

0 commit comments

Comments
 (0)