From 648d9e37a9e1494b6bc589a744c70adeaee5c0ad Mon Sep 17 00:00:00 2001 From: "msftbot[bot]" <48340428+msftbot[bot]@users.noreply.github.com> Date: Wed, 4 Mar 2020 18:18:07 +0000 Subject: [PATCH] Fixed Typo in UrlDecoder.cs (#19565) --- src/Shared/UrlDecoder/UrlDecoder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Shared/UrlDecoder/UrlDecoder.cs b/src/Shared/UrlDecoder/UrlDecoder.cs index 5666f5b34f..9e01c15d5e 100644 --- a/src/Shared/UrlDecoder/UrlDecoder.cs +++ b/src/Shared/UrlDecoder/UrlDecoder.cs @@ -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)); }