Skip to content

Commit

Permalink
“right-hand side” is more natural
Browse files Browse the repository at this point in the history
See the comments on
eb8f7f2
  • Loading branch information
AlexDaniel committed Jun 22, 2018
1 parent 5afa31c commit fdcdff8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/Language/5to6-nutshell.pod6
Expand Up @@ -539,7 +539,7 @@ my @all_numbers = |@numbers, 400, |@more_numbers;
That way one can concatenate arrays.
Note that one does not need to have any parentheses on the right hand side:
Note that one does not need to have any parentheses on the right-hand side:
the List Separator takes care of creating the list, B<not> the parentheses!
=head2 C«<=> cmp» Three-way comparisons
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/exceptions.pod6
Expand Up @@ -157,7 +157,7 @@ Output:
=end code
A C<try>-block is a normal block and as such treats its last statement as the
return value of itself. We can therefore use it as a right-hand-side.
return value of itself. We can therefore use it as a right-hand side.
=begin code
say try { +"99999" } // "oh no";
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/glossary.pod6
Expand Up @@ -876,7 +876,7 @@ code.
X<|RHS>
=head1 RHS
Acronym for Right Hand Side, usually refers to the right hand side of assignment expressions such as C<my $bound := $rhs>.
Acronym for Right-Hand Side, usually refers to the right-hand side of assignment expressions such as C<my $bound := $rhs>.
X<|roast>
=head1 roast
Expand Down

0 comments on commit fdcdff8

Please sign in to comment.