[svn:parrot] r38220 - trunk/docs/book

allison at svn.parrot.org allison at svn.parrot.org
Mon Apr 20 03:43:10 UTC 2009


Author: allison
Date: Mon Apr 20 03:43:06 2009
New Revision: 38220
URL: https://trac.parrot.org/parrot/changeset/38220

Log:
[book] HTML output can render an entity within a code example, but LaTeX
can't. Also, Pod parsers other than Pod::Simple can't parse entities in
code examples. Removing it, since it's not really necessary to use the
symbol for 'pi' in a code example comment. See TT #556.

Modified:
   trunk/docs/book/ch09_pasm.pod

Modified: trunk/docs/book/ch09_pasm.pod
==============================================================================
--- trunk/docs/book/ch09_pasm.pod	Mon Apr 20 01:57:44 2009	(r38219)
+++ trunk/docs/book/ch09_pasm.pod	Mon Apr 20 03:43:06 2009	(r38220)
@@ -255,7 +255,7 @@
 =begin PASM
 
   set I0, 42        # set integer register #0 to the integer value 42
-  set N3, 3.14159   # set number register #3 to an approximation of E<#x3C0>
+  set N3, 3.14159   # set number register #3 to an approximation of pi
   set I1, I0        # set register I1 to what I0 contains
   set I2, N3        # truncate the floating point number to an integer
 


More information about the parrot-commits mailing list