Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Oct 12, 2016
1 parent d28f6fb commit 00a79ab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/Language/tables.pod6
Expand Up @@ -262,7 +262,7 @@ r0c0 r0c1
Notice the second row has the two words separated by a visible
character (V<'|'>) but the character is not recognized as a column
separator because it doen't have an adjacent WS character on both
separator because it doesn't have an adjacent WS character on both
sides of it. B<This is an invalid table because the first row has two
columns while the second row has only one column, and it will trigger
an exception.>.
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/typesystem.pod6
Expand Up @@ -358,7 +358,7 @@ C<trusts>. A forward declaration of the trusted class may be required.
=head3 Versioning and Authorship
Versioning and authership can be applied via adverbs X«C«:ver<>»|:ver<> (class)» and X«C«:auth<>»|:auth<> (class)».
Versioning and authorship can be applied via adverbs X«C«:ver<>»|:ver<> (class)» and X«C«:auth<>»|:auth<> (class)».
Both take a string as argument, for C<:ver> the string is converted to a
L<Version|/type/Version> object. To query a class version and author use
C<.^ver> and C<^.auth>.
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/Signature.pod6
Expand Up @@ -155,7 +155,7 @@ the C<where>-clause inside the sub-signature.
L<Optional arguments|#Optional_and_Mandatory_Parameters> can have constraints,
too. Any C<where> clause on any parameter will be executed, even if it's
optional and not provided by the caller. In that case you may have to guard
against undefined values whitin the C<where> clause.
against undefined values within the C<where> clause.
sub f(Int $a, UInt $i? where { !$i.defined or $i > 5 } ) { ... }
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/X/Parameter/MultipleTypeConstraints.pod6
Expand Up @@ -17,7 +17,7 @@ sub f(Cool Real $x) { }
produces
=for code :skip-test
Parameter $x may onle have one prefix type constraint
Parameter $x may only have one prefix type constraint
=head1 Methods
Expand Down

0 comments on commit 00a79ab

Please sign in to comment.