From a21a73f9286ff10f710385ff08998e4eb95a673c Mon Sep 17 00:00:00 2001 From: JoshLove-msft <54595583+JoshLove-msft@users.noreply.github.com> Date: Wed, 9 Sep 2020 15:01:52 -0700 Subject: [PATCH] Fix typo --- sdk/core/Azure.Core.TestFramework/src/RecordEntry.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/core/Azure.Core.TestFramework/src/RecordEntry.cs b/sdk/core/Azure.Core.TestFramework/src/RecordEntry.cs index 45130920ac25..dbf16dacf626 100644 --- a/sdk/core/Azure.Core.TestFramework/src/RecordEntry.cs +++ b/sdk/core/Azure.Core.TestFramework/src/RecordEntry.cs @@ -190,7 +190,7 @@ private void SerializeBody(Utf8JsonWriter jsonWriter, string name, byte[] reques // so if the root is an array we can't write it directly // fallback to generic string writing. Also, if the root is a string // we don't want to write it directly, as this would make matching - // not won't work in libraries that allow passing JSON as a string. + // not work in libraries that allow passing JSON as a string. if (document.RootElement.ValueKind != JsonValueKind.Array && document.RootElement.ValueKind != JsonValueKind.String) {