summaryrefslogtreecommitdiff
path: root/src/lvm.h
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2014-10-23 12:00:00 +0000
committerrepogen <>2014-10-23 12:00:00 +0000
commit92fdb95364ed274752b8634c8ba3dca1f1dc5fb3 (patch)
treed1747f7ed2d0ed06b83ee3073fe4256aefd4a928 /src/lvm.h
parentd7648e85b78d53a2248de909868192598ad0eb69 (diff)
downloadlua-github-5.3.0-beta.tar.gz
Lua 5.3.0-beta5.3.0-beta
Diffstat (limited to 'src/lvm.h')
-rw-r--r--src/lvm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lvm.h b/src/lvm.h
index 0f4667af..5c5e18c3 100644
--- a/src/lvm.h
+++ b/src/lvm.h
@@ -1,5 +1,5 @@
/*
-** $Id: lvm.h,v 2.33 2014/07/30 14:42:44 roberto Exp $
+** $Id: lvm.h,v 2.34 2014/08/01 17:24:02 roberto Exp $
** Lua virtual machine
** See Copyright Notice in lua.h
*/
@@ -16,14 +16,14 @@
#if !defined(LUA_NOCVTN2S)
#define cvt2str(o) ttisnumber(o)
#else
-#define cvt2str(o) 0 /* no convertion from numbers to strings */
+#define cvt2str(o) 0 /* no conversion from numbers to strings */
#endif
#if !defined(LUA_NOCVTS2N)
#define cvt2num(o) ttisstring(o)
#else
-#define cvt2num(o) 0 /* no convertion from strings to numbers */
+#define cvt2num(o) 0 /* no conversion from strings to numbers */
#endif