Fix typo in HttpSysOptions.cs (#7207)

`infiniate` => `infinite` in ArgumentOutOfRangeException message.
This commit is contained in:
John Mazouri 2019-02-07 12:19:22 -05:00 committed by Chris Ross
parent 5cd72c1fb2
commit 2345c837ce
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
{
if (value.HasValue && value < -1)
{
throw new ArgumentOutOfRangeException(nameof(value), value, "The value must be positive, or -1 for infiniate.");
throw new ArgumentOutOfRangeException(nameof(value), value, "The value must be positive, or -1 for infinite.");
}
if (value.HasValue && _urlGroup != null)