Author: sorear Date: 2010-05-07 08:49:30 +0200 (Fri, 07 May 2010) New Revision: 30580
Modified: docs/Perl6/Spec/S04-control.pod Log: Fix incorrect use of HTML in POD6 in S04 Modified: docs/Perl6/Spec/S04-control.pod =================================================================== --- docs/Perl6/Spec/S04-control.pod 2010-05-07 06:35:34 UTC (rev 30579) +++ docs/Perl6/Spec/S04-control.pod 2010-05-07 06:49:30 UTC (rev 30580) @@ -315,7 +315,8 @@ Conditional statement modifiers work as in PerlĀ 5. So do the implicit conditionals implied by short-circuit operators. Note though that -the contents of parens or brackets is parsed as a semicolon-separated list of <I>statements</I>, +the contents of parens or brackets is parsed as a semicolon-separated list of +I<statements>, so you can say: @x = 41, (42 if $answer), 43;