diff core/src/luan/modules/PackageLuan.java @ 435:5b36f663a1b8

make members lower case
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 03 May 2015 21:28:49 -0600
parents c6bcb8859b93
children 2e79b47d02a2
line wrap: on
line diff
--- a/core/src/luan/modules/PackageLuan.java	Sun May 03 16:21:25 2015 -0600
+++ b/core/src/luan/modules/PackageLuan.java	Sun May 03 21:28:49 2015 -0600
@@ -62,7 +62,7 @@
 	}
 
 	static String read(LuanState luan,String uri) throws LuanException {
-		LuanTable t = IoLuan.Uri(luan,uri);
+		LuanTable t = IoLuan.uri(luan,uri);
 		if( t == null )
 			return null;
 		LuanFunction existsFn = (LuanFunction)t.get(luan,"exists");