Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'master' into spellcheck
  • Loading branch information
coke committed Oct 17, 2016
2 parents 7577b75 + 8ed3d19 commit 19affec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/Language/traps.pod6
Expand Up @@ -483,7 +483,7 @@ The C<once> block is a block of code that will only run once when it's parent bl
}
say "Variable = $var"; # "Variable = 1"
This functionallity also applies to other code blocks like C<sub> and C<while>, not just C<for> loops. Problems arise though, when trying to nest C<once> blocks inside of other code blocks:
This functionality also applies to other code blocks like C<sub> and C<while>, not just C<for> loops. Problems arise though, when trying to nest C<once> blocks inside of other code blocks:
my $var = 0;
for 1..10 {
Expand Down
4 changes: 2 additions & 2 deletions doc/Type/Str.pod6
Expand Up @@ -520,7 +520,7 @@ For integer conversions, specifying a precision implies that the
output of the number itself should be zero-padded to this width, where
the C<0> flag is ignored:
(Note that this feature currenly works for unsigned integer conversions, but not
(Note that this feature currently works for unsigned integer conversions, but not
for signed integer.)
NYI sprintf '<%.6d>', 1; # "<000001>"
Expand Down Expand Up @@ -932,7 +932,7 @@ C<NFKD> methods if other forms are required.
Replaces one or many characters with one or many characters. Ranges are
supported, both for keys and values. Regexes work as keys. In case a list of
keys and values is used, substrings can be replaced aswell. When called with
keys and values is used, substrings can be replaced as well. When called with
C<:complement> anything but the matched value or range is replaced with a
single value. With C<:delete> the matched characters are removed. Combining
C<:complement> and C<:delete> will remove anything but the matched values. The
Expand Down

0 comments on commit 19affec

Please sign in to comment.