[svn:parrot] r40524 - trunk/docs/book/pct

fperrad at svn.parrot.org fperrad at svn.parrot.org
Thu Aug 13 12:58:32 UTC 2009


Author: fperrad
Date: Thu Aug 13 12:58:32 2009
New Revision: 40524
URL: https://trac.parrot.org/parrot/changeset/40524

Log:
[doc] typo

Modified:
   trunk/docs/book/pct/ch03_compiler_tools.pod
   trunk/docs/book/pct/ch05_nqp.pod

Modified: trunk/docs/book/pct/ch03_compiler_tools.pod
==============================================================================
--- trunk/docs/book/pct/ch03_compiler_tools.pod	Thu Aug 13 12:57:23 2009	(r40523)
+++ trunk/docs/book/pct/ch03_compiler_tools.pod	Thu Aug 13 12:58:32 2009	(r40524)
@@ -30,7 +30,7 @@
 executing the new Perl 6 language, when specifications for that were first
 starting to be drafted. However, as time went on it was decided that Parrot
 would benefit from having a clean abstraction layer between it's internals
-and the Perl 6 language syntax. Thisclean abstraction layer brough with it
+and the Perl 6 language syntax. This clean abstraction layer brough with it
 the side effect that Parrot could be used to host a wide variety of dynamic
 languages, not just Perl 6. And beyond just hosting them, it could
 facilitate their advancement, interaction, and code sharing.
@@ -65,7 +65,7 @@
 
 =over 4
 
-=item* Write Once and Share
+=item * Write Once and Share
 
 All HLLs on Parrot ultimately compile down to Parrot's platform-independent
 bytecode which Parrot can execute natively. This means at the lowest level
@@ -76,7 +76,7 @@
 of these things into a web application you are writing in PHP? Parrot
 supports this and more.
 
-=item* Native Library Support
+=item * Native Library Support
 
 Parrot has a robust system for interfacing with external native code
 libraries, such as those commonly written in C, C++, Fortran and other
@@ -125,17 +125,17 @@
 
 =over 4
 
-=item* Not Quite Perl (NQP)
+=item * Not Quite Perl (NQP)
 
 NQP a subset of the Perl 6 language that requires no runtime library to
 execute.
 
-=item* Perl Grammar Engine (PGE)
+=item * Perl Grammar Engine (PGE)
 
 PGE is an implementation of Perl 6's powerful regular expression and grammar
 tools.
 
-=item* HLLCompiler
+=item * HLLCompiler
 
 The HLLCompiler compiler helps to manage and encapsulate the compilation
 process. An HLLCompiler object, once created, enables the user to use the

Modified: trunk/docs/book/pct/ch05_nqp.pod
==============================================================================
--- trunk/docs/book/pct/ch05_nqp.pod	Thu Aug 13 12:57:23 2009	(r40523)
+++ trunk/docs/book/pct/ch05_nqp.pod	Thu Aug 13 12:58:32 2009	(r40524)
@@ -27,7 +27,7 @@
 able to leverage their existing skills for writing compilers.
 
 In PGE, at the time of a match the grammar we can invoke an action using the
-special <code>{*}</code> symbol. In general, these action methods are
+special C<{*}> symbol. In general, these action methods are
 written in NQP, although it is possible for them to be written in PIR N<In
 fact, this is how the NQP compiler itself is written>. We won't discuss the
 PIR case here because it's uncommon and needlessly difficult. NQP is the


More information about the parrot-commits mailing list