PPListParser.st
changeset 4 90de244a7fa2
parent 0 739fe9b7253e
child 56 e6c555201a3a
--- a/PPListParser.st	Mon Sep 12 19:48:53 2011 +0200
+++ b/PPListParser.st	Fri Jan 13 12:22:50 2012 +0100
@@ -1,4 +1,4 @@
-"{ Package: 'squeak:petitparser' }"
+"{ Package: 'stx:goodies/petitparser' }"
 
 PPParser subclass:#PPListParser
 	instanceVariableNames:'parsers'
@@ -9,7 +9,7 @@
 
 PPListParser comment:'Abstract parser that parses a list of things in some way (to be specified by the subclasses).
 Instance Variables:
-	parsers	<SequenceableCollection of: PPParser>	A sequence of other parsers to delegate to.'
+	parsers <SequenceableCollection of: PPParser>   A sequence of other parsers to delegate to.'
 !
 
 
@@ -58,5 +58,5 @@
 !PPListParser class methodsFor:'documentation'!
 
 version_SVN
-    ^ '$Id: PPListParser.st,v 1.1 2011-08-18 18:56:17 cg Exp $'
+    ^ '$Id: PPListParser.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
 ! !