diff -r e1b11f74e142 -r 90de244a7fa2 PPFailure.st --- a/PPFailure.st Mon Sep 12 19:48:53 2011 +0200 +++ b/PPFailure.st Fri Jan 13 12:22:50 2012 +0100 @@ -1,4 +1,4 @@ -"{ Package: 'squeak:petitparser' }" +"{ Package: 'stx:goodies/petitparser' }" Object subclass:#PPFailure instanceVariableNames:'message position' @@ -9,8 +9,8 @@ PPFailure comment:'The failure object in PetitParser. It is the only class that responds to #isPetitFailure with true. It contains an error message and a position of the occurrence of the failure. Instance Variables: - message The error message of this failure. - position The position of this failure in the input stream. + message The error message of this failure. + position The position of this failure in the input stream. ' ! @@ -25,7 +25,7 @@ message "Answer a human readable error message of this parse failure." - + ^ message ! @@ -59,5 +59,5 @@ !PPFailure class methodsFor:'documentation'! version_SVN - ^ '$Id: PPFailure.st,v 1.1 2011-08-18 18:56:17 cg Exp $' + ^ '$Id: PPFailure.st,v 1.2 2012-01-13 11:22:50 cg Exp $' ! !