diff options
Diffstat (limited to 'core/.iconv.luadoc')
-rw-r--r-- | core/.iconv.luadoc | 8 |
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. |