From b0552224e0a94088ac802b1368c0768d34135864 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 11 Nov 2016 11:30:18 -0600 Subject: [PATCH] Lua documentation - fix notation for nullable bools --- BizHawk.Client.Common/lua/LuaDocumentation.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BizHawk.Client.Common/lua/LuaDocumentation.cs b/BizHawk.Client.Common/lua/LuaDocumentation.cs index ce4caaae4e..4c36bc0ab9 100644 --- a/BizHawk.Client.Common/lua/LuaDocumentation.cs +++ b/BizHawk.Client.Common/lua/LuaDocumentation.cs @@ -214,6 +214,7 @@ __Types and notation__ .Replace("LuaInterface", string.Empty) .Replace("Object[]", "object[] ") .Replace("Object", "object ") + .Replace("Nullable`1[Boolean]", "bool? ") .Replace("Boolean[]", "bool[] ") .Replace("Boolean", "bool ") .Replace("String", "string ")