Fix typo in .NET 6+ implementation of `DescribeIsNull`

This commit is contained in:
YoshiRulz 2023-03-13 04:08:55 +10:00
parent 51dab92826
commit cb71de8de1
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ namespace BizHawk.Common
}
#if NET6_0
public static string DescribeIsNull<T>(T? obj, [CallerArgumentExpression("boxed")] string expr = default)
public static string DescribeIsNull<T>(T? obj, [CallerArgumentExpression("obj")] string expr = default)
#else
public static string DescribeIsNull<T>(T? obj, string expr)
#endif