aboutsummaryrefslogtreecommitdiff
path: root/core/.iconv.luadoc
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2020-08-03 18:51:10 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2020-08-03 18:51:10 -0400
commitbfb36db59c432f18c9516d7307dc18ff987aa8e0 (patch)
treeedfa1ac9ca6e17ee2e20f557d221a2136e3f1b73 /core/.iconv.luadoc
parent9f6ef24202a9b30a873d1b2dc070d2443b4359f8 (diff)
downloadtextadept-bfb36db59c432f18c9516d7307dc18ff987aa8e0.tar.gz
textadept-bfb36db59c432f18c9516d7307dc18ff987aa8e0.zip
Updated LuaDoc.
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 162938e8..189e83bc 100644
--- a/core/.iconv.luadoc
+++ b/core/.iconv.luadoc
@@ -6,9 +6,9 @@
module('string')
---
--- Converts string *text* from encoding *old* to encoding *new* using iconv,
--- returning the string result.
--- Valid encodings are [GNU iconv's encodings][] and include:
+-- Converts string *text* from encoding *old* to encoding *new* using GNU
+-- libiconv, returning the string result.
+-- Valid encodings are [GNU libiconv's encodings][] and include:
--
-- * European: ASCII, ISO-8859-{1,2,3,4,5,7,9,10,13,14,15,16}, KOI8-R, KOI8-U,
-- KOI8-RU, CP{1250,1251,1252,1253,1254,1257}, CP{850,866,1131},
@@ -31,7 +31,7 @@ module('string')
-- * Unicode: UTF-8, UCS-2, UCS-2BE, UCS-2LE, UCS-4, UCS-4BE, UCS-4LE, UTF-16,
-- UTF-16BE, UTF-16LE, UTF-32, UTF-32BE, UTF-32LE, UTF-7, C99, JAVA.
--
--- [GNU iconv's encodings]: http://www.gnu.org/software/libiconv/
+-- [GNU libiconv's encodings]: http://www.gnu.org/software/libiconv/
-- @param text The text to convert.
-- @param new The string encoding to convert to.
-- @param old The string encoding to convert from.