serialization functions naming update

This commit is contained in:
MihailRis
2024-06-03 17:33:55 +03:00
parent 7f58a38454
commit fdd9ede9d5
4 changed files with 8 additions and 6 deletions
+2 -2
View File
@@ -31,7 +31,7 @@ static int l_toml_parse(lua_State*) {
}
const luaL_Reg tomllib [] = {
{"serialize", lua_wrap_errors<l_toml_stringify>},
{"deserialize", lua_wrap_errors<l_toml_parse>},
{"tostring", lua_wrap_errors<l_toml_stringify>},
{"parse", lua_wrap_errors<l_toml_parse>},
{NULL, NULL}
};