Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add -- and ++ operators to be able to be searched.
  • Loading branch information
samcv committed Dec 17, 2016
1 parent f45db30 commit cad630c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/Language/operators.pod6
Expand Up @@ -654,7 +654,7 @@ class or role, even after it has been redefined in the child class.
=head1 Autoincrement Precedence
=head2 prefix C«++»
=head2 prefix X<C«++»|++>
=begin code :skip-test
multi sub prefix:<++>($x is rw) is assoc<non>
Expand All @@ -670,7 +670,7 @@ It works by calling the L<succ> method (for I<successor>) on its argument,
which gives custom types the freedom to implement their own increment
semantics.
=head2 prefix C«--»
=head2 prefix X<C«--»|-->
=begin code :skip-test
multi sub prefix:<-->($x is rw) is assoc<non>
Expand All @@ -687,7 +687,7 @@ which gives custom types the freedom to implement their own decrement
semantics.
=head2 postfix C«++»
=head2 postfix X<C«++»|++>
=begin code :skip-test
multi sub postfix:<++>($x is rw) is assoc<non>
Expand Down

0 comments on commit cad630c

Please sign in to comment.