Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Oct 9, 2016
1 parent a47828f commit 07a6217
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/Language/packages.pod6
Expand Up @@ -62,7 +62,7 @@ The following pseudo-package names are reserved at the front of a name:
PROCESS # Process-related globals (superglobals)
COMPILING # Lexical symbols in the scope being compiled
X«|CALLER (package)»X«|CALLERS (package)»X«|DYNAMIC (package)»X«|OUTER (package)»X«|OUTERS (package)»X«|LEXICAL (package)»X«|UNIT (package)»X«|SETTING (package)»X«|PARENT (package)»X«|CIENT (package)»
X«|CALLER (package)»X«|CALLERS (package)»X«|DYNAMIC (package)»X«|OUTER (package)»X«|OUTERS (package)»X«|LEXICAL (package)»X«|UNIT (package)»X«|SETTING (package)»X«|PARENT (package)»X«|CLIENT (package)»
The following relative names are also reserved but may be used
anywhere in a name:
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/rb-nutshell.pod6
Expand Up @@ -868,7 +868,7 @@ multi-dispatch (function signatures with types) to decide which implementation
to use.
5.send(:+, 3) # => 8, Ruby
&[+](5, 3) # => 8, Perl 6, reference to infix additon operator
&[+](5, 3) # => 8, Perl 6, reference to infix addition operator
&[+].^candidates # Perl 6, lists all signatures for the + operator
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/syntax.pod6
Expand Up @@ -61,7 +61,7 @@ though you can't leave out any of the remaining whitespace.
In many places where the compiler would not allow a space you can use any
whitespace that is quoted with a backslash. Unspaces in tokens are not
supported. Newlines that are unspaced still count when the compiler produces
line numbers. Usecases for unspace are separation of postfix operators and
line numbers. Use cases for unspace are separation of postfix operators and
routine argument lists.
sub alignment(+@l) { +@l };
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/typesystem.pod6
Expand Up @@ -146,7 +146,7 @@ notation instead.
X<|FALLBACK (method)>
A method with the special name C<FALLBACK> will be called when other means to
resolve the name produce no result. The first agument holds the name and all
resolve the name produce no result. The first argument holds the name and all
following arguments are forwarded from the original call. Multi methods and
L«subsignatures|/type/Signature#Subsignatures» are supported.
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/Signature.pod6
Expand Up @@ -107,7 +107,7 @@ CATCH { default { put .^name, ': ', .Str } };
# OUTPUT«X::TypeCheck::Argument: Calling divisors(Rat) will never work with declared signature (Int $n)␤»
=end code
X<|anonymouse arguments (Signature)>
X<|anonymous arguments (Signature)>
Anonymous arguments are fine too, if a parameter is only needed for
its type constraint.
Expand Down

0 comments on commit 07a6217

Please sign in to comment.