From 00ac3fa1bc1dec7f177a7553fba2c8c93a1e37a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Thu, 12 Nov 1998 02:30:43 +0100 Subject: [PATCH] Fixed typo. Rev: lib/modules/LR.pmod/parser.pike:1.4 --- lib/modules/LR.pmod/parser.pike | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/modules/LR.pmod/parser.pike b/lib/modules/LR.pmod/parser.pike index 3522260f2e..36f95e0ffe 100644 --- a/lib/modules/LR.pmod/parser.pike +++ b/lib/modules/LR.pmod/parser.pike @@ -1,5 +1,5 @@ /* - * $Id: parser.pike,v 1.3 1997/04/22 03:35:59 hubbe Exp $ + * $Id: parser.pike,v 1.4 1998/11/12 01:30:43 grubba Exp $ * * A BNF-grammar in Pike. * Compiles to a LALR(1) state-machine. @@ -9,7 +9,7 @@ //. //. File: parser.pike -//. RCSID: $Id: parser.pike,v 1.3 1997/04/22 03:35:59 hubbe Exp $ +//. RCSID: $Id: parser.pike,v 1.4 1998/11/12 01:30:43 grubba Exp $ //. Author: Henrik Grubbstr�m (grubba@infovav.se) //. //. Synopsis: LALR(1) parser and compiler. @@ -141,7 +141,7 @@ static private mapping(mixed : multiset(object(rule))) begins = ([]); /* Maps from symbol to which rules use that symbol - * (used for findling nullable symbols) + * (used for finding nullable symbols) */ static private mapping(int : multiset(object(rule))) used_by = ([]); -- GitLab