diff --git a/src/BizHawk.Client.Common/lua/LuaHelperLibs/BitLuaLibrary.cs b/src/BizHawk.Client.Common/lua/LuaHelperLibs/BitLuaLibrary.cs index fa169ebbf6..710655e423 100644 --- a/src/BizHawk.Client.Common/lua/LuaHelperLibs/BitLuaLibrary.cs +++ b/src/BizHawk.Client.Common/lua/LuaHelperLibs/BitLuaLibrary.cs @@ -25,7 +25,7 @@ namespace BizHawk.Client.Common } [LuaMethodExample("local uibitbno = bit.bnot( 1000 );")] - [LuaMethod("bnot", "Bitwise NOT of 'val' against 'amt'")] + [LuaMethod("bnot", "Bitwise NOT of 'val'")] public static uint Bnot(uint val) { return ~val;