diff core/src/luan/modules/String.luan @ 555:e25ba7a2e816

some String documentation and fixes
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 19 Jun 2015 04:29:06 -0600
parents f4dfe9c64c25
children e1dfeddfbc7b
line wrap: on
line diff
--- a/core/src/luan/modules/String.luan	Thu Jun 18 03:30:18 2015 -0600
+++ b/core/src/luan/modules/String.luan	Fri Jun 19 04:29:06 2015 -0600
@@ -4,7 +4,6 @@
 
 local M = {}
 
-M.unicode = StringLuan.unicode
 M.char = StringLuan.char_
 M.concat = StringLuan.concat
 M.encode = StringLuan.encode
@@ -12,7 +11,6 @@
 M.format = StringLuan.format
 M.gmatch = StringLuan.gmatch
 M.gsub = StringLuan.gsub
-M.len = StringLuan.len
 M.literal = Pattern.quote
 M.lower = StringLuan.lower
 M.match = StringLuan.match
@@ -23,6 +21,7 @@
 M.to_binary = StringLuan.to_binary
 M.to_number = StringLuan.to_number
 M.trim = StringLuan.trim
+M.unicode = StringLuan.unicode
 M.upper = StringLuan.upper
 
 return M