Fix typo in exception message.
This commit is contained in:
@@ -38,7 +38,7 @@ namespace Wasmtime
|
||||
{
|
||||
if (minimum == 0)
|
||||
{
|
||||
throw new ArgumentException("The minimum cannot be zero..", nameof(minimum));
|
||||
throw new ArgumentException("The minimum cannot be zero.", nameof(minimum));
|
||||
}
|
||||
|
||||
if (maximum < minimum)
|
||||
|
||||
Reference in New Issue
Block a user