From cb71de8de17e6ae56e819ec41842ae4d93d204d8 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Mon, 13 Mar 2023 04:08:55 +1000 Subject: [PATCH] Fix typo in .NET 6+ implementation of `DescribeIsNull` --- src/BizHawk.Common/Util.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Common/Util.cs b/src/BizHawk.Common/Util.cs index 9f33eaf672..2f0d24d490 100644 --- a/src/BizHawk.Common/Util.cs +++ b/src/BizHawk.Common/Util.cs @@ -79,7 +79,7 @@ namespace BizHawk.Common } #if NET6_0 - public static string DescribeIsNull(T? obj, [CallerArgumentExpression("boxed")] string expr = default) + public static string DescribeIsNull(T? obj, [CallerArgumentExpression("obj")] string expr = default) #else public static string DescribeIsNull(T? obj, string expr) #endif