From ebcbcae46d8ea322788a7e5581eb71a8d65a2183 Mon Sep 17 00:00:00 2001 From: Cintique Date: Tue, 31 May 2022 14:59:17 +1000 Subject: [PATCH] Typo --- .../SharedSource/LuaCs/Lua/LuaClasses/LuaUserData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Barotrauma/BarotraumaShared/SharedSource/LuaCs/Lua/LuaClasses/LuaUserData.cs b/Barotrauma/BarotraumaShared/SharedSource/LuaCs/Lua/LuaClasses/LuaUserData.cs index 75671711d..960003023 100644 --- a/Barotrauma/BarotraumaShared/SharedSource/LuaCs/Lua/LuaClasses/LuaUserData.cs +++ b/Barotrauma/BarotraumaShared/SharedSource/LuaCs/Lua/LuaClasses/LuaUserData.cs @@ -230,7 +230,7 @@ namespace Barotrauma /// in the way by converting the List`1 to a MoonSharp.Interpreter.Table and breaking everything. /// Wrapping the value in a userdata preserves the original type during conversions. /// - /// Lua value to conert and wrap in a userdata. + /// Lua value to convert and wrap in a userdata. /// The CLR type of the object to convert the Lua value to. Uses MoonSharp ScriptToClr converters. Lua scripts can obtain Types from descriptors. /// A userdata that wraps the Lua value converted to an object of the desired type. public static DynValue CreateUserDataOfType(DynValue scriptObject, Type desiredType)