aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/.iconv.luadoc
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2013-11-18 14:28:35 -0500
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2013-11-18 14:28:35 -0500
commitf75a88a3d3e0d1ecb403bbfa93062bf816c0f2a1 (patch)
treedde0adb91d1ce9e4066b3e459fa912a0e9a1a295 /core/.iconv.luadoc
parent87154e0a25d44c0d5090ca5ef84500e596beaf52 (diff)
LuaDoc updates.
Diffstat (limited to 'core/.iconv.luadoc')
-rw-r--r--core/.iconv.luadoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/.iconv.luadoc b/core/.iconv.luadoc
index ee403194..95e62803 100644
--- a/core/.iconv.luadoc
+++ b/core/.iconv.luadoc
@@ -6,7 +6,7 @@
module('string')
---
--- Converts string *text* from encoding *from* to encoding *to* using iconv,
+-- Converts string *text* from encoding *old* to encoding *new* using iconv,
-- returning the string result.
-- Valid encodings are [GNU iconv's encodings][] and include:
--
@@ -33,6 +33,6 @@ module('string')
--
-- [GNU iconv's encodings]: http://www.gnu.org/software/libiconv/
-- @param text The text to convert.
--- @param to The string encoding to convert to.
--- @param from The string encoding to convert from.
-function iconv(text, to, from) end
+-- @param new The string encoding to convert to.
+-- @param old The string encoding to convert from.
+function iconv(text, new, old) end