Fix documentation Fixes #2015

This commit is contained in:
alyosha-tas 2020-05-27 11:29:33 -04:00
parent 3604452b65
commit 7b340f8766
1 changed files with 1 additions and 1 deletions

View File

@ -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;