Skip to content

Commit

Permalink
Minor refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Oct 15, 2023
1 parent 7173d64 commit aa26e66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Shared/Throw.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static void IfFalse(string paramName, bool condition, string message)
throw new ArgumentException(message, paramName);
}

public static void IfFalse<T>(string paramName, bool condition, string message, T arg0)
public static void IfFalse<T0>(string paramName, bool condition, string message, T0 arg0)
{
if (!condition)
throw new ArgumentException(FormatMessage(message, arg0), paramName);
Expand Down

0 comments on commit aa26e66

Please sign in to comment.