[svn:parrot] r39607 - trunk/docs/book/pir
allison at svn.parrot.org
allison at svn.parrot.org
Wed Jun 17 04:44:50 UTC 2009
Author: allison
Date: Wed Jun 17 04:44:49 2009
New Revision: 39607
URL: https://trac.parrot.org/parrot/changeset/39607
Log:
[book] Fixing failing example test, invalid octal constant.
Modified:
trunk/docs/book/pir/ch03_basic_syntax.pod
Modified: trunk/docs/book/pir/ch03_basic_syntax.pod
==============================================================================
--- trunk/docs/book/pir/ch03_basic_syntax.pod Wed Jun 17 04:12:53 2009 (r39606)
+++ trunk/docs/book/pir/ch03_basic_syntax.pod Wed Jun 17 04:44:49 2009 (r39607)
@@ -128,12 +128,12 @@
=begin PIR_FRAGMENT
$I1 = 0b01010 # binary
- $I2 = 0o78 # octal
+ $I2 = 0o72 # octal
$I3 = 0xA5 # hexadecimal
=end PIR_FRAGMENT
-Floating point number literals have a decimal point, and can use scientific
+Floating point number literals have a decimal point and can use scientific
notation:
=begin PIR_FRAGMENT
More information about the parrot-commits
mailing list