Skip to content

Commit fdcdff8

Browse files
committed
“right-hand side” is more natural
See the comments on eb8f7f2
1 parent 5afa31c commit fdcdff8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/Language/5to6-nutshell.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ my @all_numbers = |@numbers, 400, |@more_numbers;
539539
540540
That way one can concatenate arrays.
541541
542-
Note that one does not need to have any parentheses on the right hand side:
542+
Note that one does not need to have any parentheses on the right-hand side:
543543
the List Separator takes care of creating the list, B<not> the parentheses!
544544
545545
=head2 C«<=> cmp» Three-way comparisons

doc/Language/exceptions.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Output:
157157
=end code
158158
159159
A C<try>-block is a normal block and as such treats its last statement as the
160-
return value of itself. We can therefore use it as a right-hand-side.
160+
return value of itself. We can therefore use it as a right-hand side.
161161
162162
=begin code
163163
say try { +"99999" } // "oh no";

doc/Language/glossary.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -876,7 +876,7 @@ code.
876876
X<|RHS>
877877
=head1 RHS
878878
879-
Acronym for Right Hand Side, usually refers to the right hand side of assignment expressions such as C<my $bound := $rhs>.
879+
Acronym for Right-Hand Side, usually refers to the right-hand side of assignment expressions such as C<my $bound := $rhs>.
880880
881881
X<|roast>
882882
=head1 roast

0 commit comments

Comments
 (0)