Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
some fixes #1268 and #2302
  • Loading branch information
JJ committed Jun 24, 2019
1 parent 888fa47 commit 67705e5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions doc/Type/CX/Done.pod6
Expand Up @@ -7,9 +7,9 @@
role CX::Done does X::Control { }
A L<control exception|/language/exceptions#Control_exceptions> to be used to
indicate a supply block is finished; since Rakudo 2019.03, C<throw>ing an
C<X::Control> object raises a control exception which is caught by the
L<CONTROL phaser|/language/phasers#CONTROL> instead of
indicate a supply block is finished by calling C<done>; since Rakudo 2019.03,
C<throw>ing an C<X::Control> object raises a control exception which is caught
by the L<CONTROL phaser|/language/phasers#CONTROL> instead of
L<CATCH|/language/phasers#CATCH>.
=head1 Methods
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/CX/Proceed.pod6
Expand Up @@ -7,7 +7,7 @@
role CX::Proceed does X::Control { }
A L<control exception|/language/exceptions#Control_exceptions> to be used when
C<proceed> is used in C<when> or C<default> blocks; since Rakudo 2019.03,
C<proceed> is used within C<when> or C<default> blocks; since Rakudo 2019.03,
C<throw>ing an C<X::Control> object raises a control exception which is caught
by the L<CONTROL phaser|/language/phasers#CONTROL> instead of
L<CATCH|/language/phasers#CATCH>.
Expand Down
4 changes: 2 additions & 2 deletions doc/Type/CX/Take.pod6
Expand Up @@ -7,8 +7,8 @@
role CX::Take does X::Control { }
A L<control exception|/language/exceptions#Control_exceptions> triggered by
C<take>; since Rakudo 2019.03, C<throw>ing an C<X::Control> object raises a
control exception which is caught by the L<CONTROL
C<take>; since Rakudo 2019.03, C<throw>ing any exception that mixes
C<X::Control> in raises a control exception which is caught by the L<CONTROL
phaser|/language/phasers#CONTROL> instead of L<CATCH|/language/phasers#CATCH>.
=head1 Methods
Expand Down
4 changes: 2 additions & 2 deletions doc/Type/CX/Warn.pod6
Expand Up @@ -6,7 +6,7 @@
role CX::Warn does X::Control { }
A L<control exception|/language/exceptions#Control_exceptions> to warn about any
A L<control exception|/language/exceptions#Control_exceptions> triggered when C<warn> is called to warn about any
incidence; since Rakudo 2019.03, C<throw>ing an C<X::Control> object raises a
control exception which is caught by the L<CONTROL
phaser|/language/phasers#CONTROL> instead of L<CATCH|/language/phasers#CATCH>.
Expand All @@ -15,7 +15,7 @@ phaser|/language/phasers#CONTROL> instead of L<CATCH|/language/phasers#CATCH>.
=head2 method new
C<CX::Warn> objects are created when a warning is thrown in any sentence.
C<CX::Warn> objects are created when a warning is thrown in any block.
=end pod

0 comments on commit 67705e5

Please sign in to comment.