aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-19 13:14:09 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-19 13:14:09 -0300
commit9618aaf07d0d82ccbac91db22cb42451ec17d7ed (patch)
tree199314fbf7462d174921c71af389da14b4f6c595 /lauxlib.c
parentbec9bc4154e54fbc19b134874f6301f1e4654d5d (diff)
downloadlua-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.tar.gz
lua-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.tar.bz2
lua-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.zip
small corrections in comments
Diffstat (limited to 'lauxlib.c')
-rw-r--r--lauxlib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lauxlib.c b/lauxlib.c
index 0fa745e4..415c4fea 100644
--- a/lauxlib.c
+++ b/lauxlib.c
@@ -1,6 +1,6 @@
1/* 1/*
2** $Id: lauxlib.c,v 1.10 1998/03/06 18:47:42 roberto Exp roberto $ 2** $Id: lauxlib.c,v 1.11 1998/06/18 16:57:03 roberto Exp roberto $
3** Auxiliar functions for building Lua libraries 3** Auxiliary functions for building Lua libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
6 6
@@ -9,7 +9,7 @@
9#include <stdio.h> 9#include <stdio.h>
10#include <string.h> 10#include <string.h>
11 11
12/* Please Notice: This file uses only the oficial API of Lua 12/* Please Notice: This file uses only the official API of Lua
13** Any function declared here could be written as an application 13** Any function declared here could be written as an application
14** function. With care, these functions can be used by other libraries. 14** function. With care, these functions can be used by other libraries.
15*/ 15*/