Fixed a copy-paste error reported by Jose Quinteiro.
authorthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Thu, 11 Dec 2008 04:40:50 +0000 (04:40 +0000)
committerthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Thu, 11 Dec 2008 04:40:50 +0000 (04:40 +0000)
git-svn-id: http://svn.complang.org/ragel/trunk@626 052ea7fc-9027-0410-9066-f65837a77df0

CREDITS
doc/ragel-guide.tex

diff --git a/CREDITS b/CREDITS
index f7587af..b1f68e3 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -37,4 +37,5 @@ missed.
     Judson Lester, Barry Arthur, Tim Potter, Ryan Phelps, David Waite,
     Kenny MacDermid, MenTaLguY, Manoj Rajagopalan, Tim Chklovski,
     Mikkel Fahnøe Jørgensen, Andrei Polushin, Evan Phoenix, David Balmain,
-    Ross Thomas, Mitchell Foral, John D. Mitchell, Diego 'Flameeyes' Pettenò
+    Ross Thomas, Mitchell Foral, John D. Mitchell, Diego 'Flameeyes' Pettenò,
+    Jose Quinteiro
index 62f740d..3a0f039 100644 (file)
@@ -1758,7 +1758,7 @@ instantiation that consumes input, can attempt to recover from errors.
 
 \sasp\verb|>!action     >err(name)     >err{...} | -- the start state\\
 \sasp\verb|<!action     <err(name)     <err{...} | -- any state except the start state\\
-\sasp\verb|$!action     $eof(name)     $err{...} | -- all states\\
+\sasp\verb|$!action     $err(name)     $err{...} | -- all states\\
 \sasp\verb|%!action     %err(name)     %err{...} | -- final states\\
 \sasp\verb|@!action     @err(name)     @err{...} | -- any state except final states\\
 \sasp\verb|<>!action    <>err(name)    <>err{...}| -- any except start and final (middle)