Skip to content

Commit 8f4251f

Browse files
committed
fix: remove uppercase String[] in examples
1 parent c530463 commit 8f4251f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class Test1
4646
return 0;
4747
}
4848

49-
public static void Main(String[] args)
49+
public static void Main(string[] args)
5050
{
5151
lua_State L = luaL_newstate();
5252
if (L == 0)
@@ -87,7 +87,7 @@ public class Test2
8787
return 0;
8888
}
8989

90-
public static void Main(String[] args)
90+
public static void Main(string[] args)
9191
{
9292
lua_State L = luaL_newstate();
9393
if (L == 0)

0 commit comments

Comments
 (0)