Fixed Typo in UrlDecoder.cs (#19565)

This commit is contained in:
msftbot[bot] 2020-03-04 18:18:07 +00:00 committed by GitHub
parent 56fb4b4d2f
commit 648d9e37a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ namespace Microsoft.AspNetCore.Internal
if (destination.Length < source.Length)
{
throw new ArgumentException(
"Lenghth of the destination byte span is less then the source.",
"Length of the destination byte span is less then the source.",
nameof(destination));
}