Fix typo in exception message.

This commit is contained in:
Peter Huene
2020-03-26 01:14:51 -07:00
parent 183aa9af4c
commit 2d43d5a8fa

View File

@@ -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)