Skip to content

Commit 45b9d06

Browse files
committed
Merge branch 'master' into GT#155
2 parents 3aa0ecb + 3fcedd3 commit 45b9d06

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

doc/Language/typesystem.pod6

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -282,11 +282,11 @@ Returns a list with key and value of the enum-pair.
282282
283283
TODO
284284
285-
=head3 Versioning and Authership
285+
=head3 Versioning and Authorship
286286
287-
Versioning and authership can be applied via adverbs C«:ver<>» and C«:auth<>.
287+
Versioning and authorship can be applied via adverbs C«:ver<>» and C«:auth<>.
288288
Both take a string as argument, for C<:ver> the string is converted to a
289-
L<Version|/type/Version> object. To query a modules version and auther use
289+
L<Version|/type/Version> object. To query a modules version and author use
290290
C<.^ver> and C<^.auth>.
291291
292292
module M:ver<4.2.3>:auth<me@here.local> {}
@@ -295,19 +295,19 @@ C<.^ver> and C<^.auth>.
295295
296296
=head2 C<package>
297297
298-
=head3 Versioning and Authership
298+
=head3 Versioning and Authorship
299299
300300
TODO
301301
302302
=head2 C<grammar>
303303
304304
TODO
305305
306-
=head3 Versioning and Authership
306+
=head3 Versioning and Authorship
307307
308-
Versioning and authership can be applied via adverbs C«:ver<>» and C«:auth<>.
308+
Versioning and authorship can be applied via adverbs C«:ver<>» and C«:auth<>.
309309
Both take a string as argument, for C<:ver> the string is converted to a
310-
L<Version|/type/Version> object. To query a grammars version and auther use
310+
L<Version|/type/Version> object. To query a grammars version and author use
311311
C<.^ver> and C<^.auth>.
312312
313313
grammar G:ver<4.2.3>:auth<me@here.local> {}

doc/Language/variables.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ C<Associative> roles.
392392
393393
=head2 The C<~> Twigil
394394
395-
Note: Slangs are NYI in Rakudo.
395+
Note: Slangs are L<NYI|/language/glossary#NYI> in Rakudo.
396396
397397
The C<~> twigil is for referring to sublanguages (called slangs). The
398398
following are useful:

doc/Type/Any.pod6

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,7 @@ Defined as:
179179
180180
C<duckmap> will apply C<&block> on each element and return a new list with
181181
defined return values of the block. For undefined return values, C<duckmap>
182-
will try to descend into the element if that element is implementing
183-
C<Iterable>.
182+
will try to descend into the element if that element implements C<Iterable>.
184183
185184
my @a = [1,[2,3],4];
186185
dd @a.duckmap({ $_ ~~ Int ?? $_++ !! Any });

doc/Type/Num.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Returns a pseudo random number between 0 and the invocant.
2727
2828
sub srand(Int $seed) returns Int:D
2929
30-
Seeds the pseudo random number generator used by L<Num.rand|/typeNum#rand) with
30+
Seeds the pseudo random number generator used by L<Num.rand|/typeNum#rand> with
3131
the provided value. Note that C<srand> is called with a platform dependent
3232
value when a Perl 6 program is started.
3333

0 commit comments

Comments
 (0)