diff -r e1b11f74e142 -r 90de244a7fa2 PPListParser.st --- 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 A sequence of other parsers to delegate to.' + parsers 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 $' ! !