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

moritz at svn.parrot.org moritz at svn.parrot.org
Sun Mar 15 22:52:56 UTC 2009


Author: moritz
Date: Sun Mar 15 22:52:56 2009
New Revision: 37462
URL: https://trac.parrot.org/parrot/changeset/37462

Log:
[docs/book] fixed some small thinkos (hopefully ;-)

Modified:
   trunk/docs/book/ch09_pct.pod

Modified: trunk/docs/book/ch09_pct.pod
==============================================================================
--- trunk/docs/book/ch09_pct.pod	Sun Mar 15 21:35:58 2009	(r37461)
+++ trunk/docs/book/ch09_pct.pod	Sun Mar 15 22:52:56 2009	(r37462)
@@ -448,8 +448,8 @@
 work similarly to more versatile bottom-up parsers such as Lex or Yacc, but
 are optimized for use with expressions and equations. The "things" in an
 equation are split into two subtypes: I<terms> and I<operators>. Operators
-themselves are split into a number of types including postfix (C<-a>),
-suffix (C<i++>), infix (C<x + y>), circumfix (C<[z]>), postcircumix
+themselves are split into a number of types including prefix (C<-a>),
+postfix (C<i++>), infix (C<x + y>), circumfix (C<[z]>), postcircumix
 (C<a[b]>), and list (C<1, 2, 3>). Each operator gets its own precedence
 number that specifies how closely it binds to the terms. In the example above,
 the expression is parsed


More information about the parrot-commits mailing list