From fdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy <roberto@inf.puc-rio.br> Date: Fri, 29 Oct 2010 15:52:46 -0200 Subject: comment typos --- lstrlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstrlib.c') diff --git a/lstrlib.c b/lstrlib.c index 00a510ee..21e8239f 100644 --- a/lstrlib.c +++ b/lstrlib.c @@ -1,5 +1,5 @@ /* -** $Id: lstrlib.c,v 1.154 2010/07/02 11:38:13 roberto Exp roberto $ +** $Id: lstrlib.c,v 1.155 2010/10/25 19:01:37 roberto Exp roberto $ ** Standard library for string operations and pattern-matching ** See Copyright Notice in lua.h */ @@ -424,7 +424,7 @@ static const char *match (MatchState *ms, const char *s, const char *p) { default: goto dflt; } } - default: dflt: { /* pattern class plus optional sufix */ + default: dflt: { /* pattern class plus optional suffix */ const char *ep = classend(ms, p); /* points to what is next */ int m = s < ms->src_end && singlematch(uchar(*s), p, ep); switch (*ep) { -- cgit v1.2.3-55-g6feb