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

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Mon Sep 6 12:30:18 UTC 2010


Author: jkeenan
Date: Mon Sep  6 12:30:18 2010
New Revision: 48810
URL: https://trac.parrot.org/parrot/changeset/48810

Log:
Correct word omission spotted by kkourt++ in http://trac.parrot.org/parrot/ticket/1772.

Modified:
   trunk/docs/book/pct/ch04_pge.pod

Modified: trunk/docs/book/pct/ch04_pge.pod
==============================================================================
--- trunk/docs/book/pct/ch04_pge.pod	Mon Sep  6 09:59:02 2010	(r48809)
+++ trunk/docs/book/pct/ch04_pge.pod	Mon Sep  6 12:30:18 2010	(r48810)
@@ -30,12 +30,12 @@
   sub <function_name> { <function_body> }
 
 A grammar is a collection of rules like the ones above that specify all the
-acceptable patterns in a language. Grammars group together these rules in
-much the same way that a groups together related data fields and methods
-N<In languages like Perl 6 for instance, a grammar is just a special kind
-of class and a rule is just a special kind of method.>. Each rule defines
-a pattern for matching one unit of text, and can be made up of various other
-rules which are called recursively to make a complete match.
+acceptable patterns in a language. Grammars group together these rules in much
+the same way that a class groups together related data fields and methods N<In
+languages like Perl 6 for instance, a grammar is just a special kind of class
+and a rule is just a special kind of method.>. Each rule defines a pattern for
+matching one unit of text, and can be made up of various other rules which are
+called recursively to make a complete match.
 
 A rule can contain regular expressions to match patterns of characters:
 


More information about the parrot-commits mailing list