From 9618aaf07d0d82ccbac91db22cb42451ec17d7ed Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 19 Jun 1998 13:14:09 -0300 Subject: small corrections in comments --- lmathlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lmathlib.c') diff --git a/lmathlib.c b/lmathlib.c index 8b8babaa..c62b88c4 100644 --- a/lmathlib.c +++ b/lmathlib.c @@ -1,5 +1,5 @@ /* -** $Id: lmathlib.c,v 1.8 1997/12/26 18:36:31 roberto Exp roberto $ +** $Id: lmathlib.c,v 1.9 1998/05/27 19:09:39 roberto Exp roberto $ ** Lua standard mathematical library ** See Copyright Notice in lua.h */ @@ -155,7 +155,7 @@ static void math_max (void) static void math_random (void) { - /* the '%' is needed because on some sistems (SunOS!) "rand()" may */ + /* the '%' is needed because on some systems (SunOS!) "rand()" may */ /* return a value bigger than RAND_MAX... */ double r = (double)(rand()%RAND_MAX) / (double)RAND_MAX; double l = luaL_opt_number(1, 0); -- cgit v1.2.3-55-g6feb