summaryrefslogtreecommitdiff
path: root/plugins/MirLua/Modules/m_json/src/main.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-08-06 21:10:41 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-08-06 21:10:41 +0000
commite53d2bd66b1b0bebcc355c165c1060a4490f01ab (patch)
tree0f4edfa8b3fa542c76c1c0220d0580248e7a590a /plugins/MirLua/Modules/m_json/src/main.cpp
parentcff4544d6fe2864212e93c6653ef2e8e8cbd38c5 (diff)
MirLua: m_json:
- added simple arrays support - added integer support git-svn-id: http://svn.miranda-ng.org/main/trunk@17165 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/Modules/m_json/src/main.cpp')
-rw-r--r--plugins/MirLua/Modules/m_json/src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/Modules/m_json/src/main.cpp b/plugins/MirLua/Modules/m_json/src/main.cpp
index c26f350f63..fd7c40b1ff 100644
--- a/plugins/MirLua/Modules/m_json/src/main.cpp
+++ b/plugins/MirLua/Modules/m_json/src/main.cpp
@@ -28,7 +28,7 @@ static int lua_Encode(lua_State *L)
static const luaL_Reg methods[] =
{
- { "Dcode", lua_Decode },
+ { "Decode", lua_Decode },
{ "Encode", lua_Encode },
{ NULL, NULL }