diff options
author | Kim Alvefur <zash@zash.se> | 2022-07-11 20:02:10 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-07-11 20:02:10 +0200 |
commit | dabdfc91be04257db5a5aae48cb03bcbfb274425 (patch) | |
tree | eb18de68fa8b29be2eaaf783cc64ab431925c0ec /util-src | |
parent | f8e73eba98a73e5d3dd14f73d7ce66e5503efbb4 (diff) | |
download | prosody-dabdfc91be04257db5a5aae48cb03bcbfb274425.tar.gz prosody-dabdfc91be04257db5a5aae48cb03bcbfb274425.zip |
util.table: Fix inaccurate comment
Probably a duplicate of the comment next to Lmove, recorded by mistake
Lpack can probably be removed at some point in the near future once we
are confident it is not used anywhere.
Diffstat (limited to 'util-src')
-rw-r--r-- | util-src/table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-src/table.c b/util-src/table.c index ade019c4..1cbb276d 100644 --- a/util-src/table.c +++ b/util-src/table.c @@ -11,7 +11,7 @@ static int Lcreate_table(lua_State *L) { return 1; } -/* COMPAT: w/ Lua pre-5.4 */ +/* COMPAT: w/ Lua pre-5.2 */ static int Lpack(lua_State *L) { unsigned int n_args = lua_gettop(L); lua_createtable(L, n_args, 1); |