[svn:parrot] r41929 - trunk/docs/book/pir
jkeenan at svn.parrot.org
jkeenan at svn.parrot.org
Sun Oct 18 14:46:08 UTC 2009
Author: jkeenan
Date: Sun Oct 18 14:46:07 2009
New Revision: 41929
URL: https://trac.parrot.org/parrot/changeset/41929
Log:
Correcting Pod formatting error as suggested by rblasch++ in https://trac.parrot.org/parrot/ticket/1117.
Modified:
trunk/docs/book/pir/ch05_control_structures.pod
Modified: trunk/docs/book/pir/ch05_control_structures.pod
==============================================================================
--- trunk/docs/book/pir/ch05_control_structures.pod Sun Oct 18 14:42:51 2009 (r41928)
+++ trunk/docs/book/pir/ch05_control_structures.pod Sun Oct 18 14:46:07 2009 (r41929)
@@ -298,7 +298,7 @@
...
}
-where C<i> is the counter, C<i = 1> sets the start value, C<<i <= 10>> checks
+where C<i> is the counter, C<i = 1> sets the start value, C<< i <= 10 >> checks
the stop condition, and C<i++> steps to the next iteration. A I<for> loop in
PIR requires one conditional branch and two unconditional branches.
More information about the parrot-commits
mailing list