From dba42eac43beee8ccdedf271bcda2a0509f1afb6 Mon Sep 17 00:00:00 2001 From: youxijia Date: Wed, 18 May 2016 16:50:49 +0800 Subject: [PATCH] just a typo change the misspelling word to interprete --- Assets/uLua/Examples/05_CallLuaFunction/CallLuaFunction_01.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/uLua/Examples/05_CallLuaFunction/CallLuaFunction_01.cs b/Assets/uLua/Examples/05_CallLuaFunction/CallLuaFunction_01.cs index 9643580..0bb4dfd 100644 --- a/Assets/uLua/Examples/05_CallLuaFunction/CallLuaFunction_01.cs +++ b/Assets/uLua/Examples/05_CallLuaFunction/CallLuaFunction_01.cs @@ -21,7 +21,7 @@ void Start () { // Get the function object LuaFunction f = l.GetFunction("luaFunc"); - // Call it, takes a variable number of object parameters and attempts to interpet them appropriately + // Call it, takes a variable number of object parameters and attempts to interprete them appropriately object[] r = f.Call("I called a lua function!"); // Lua functions can have variable returns, so we again store those as a C# object array, and in this case print the first one