From ad9cf5bcd30c3aa2bccd2a6ac78e8e927d1717cf Mon Sep 17 00:00:00 2001 From: Maher Jendoubi Date: Wed, 8 Jan 2020 18:54:20 +0100 Subject: [PATCH] Contributing: Fix a typo (#18135) --- src/Features/JsonPatch/src/Helpers/GetValueResult.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Features/JsonPatch/src/Helpers/GetValueResult.cs b/src/Features/JsonPatch/src/Helpers/GetValueResult.cs index e2e739a027..8e6cd3d60d 100644 --- a/src/Features/JsonPatch/src/Helpers/GetValueResult.cs +++ b/src/Features/JsonPatch/src/Helpers/GetValueResult.cs @@ -23,7 +23,7 @@ namespace Microsoft.AspNetCore.JsonPatch.Helpers public object PropertyValue { get; private set; } /// - /// HasError: true when an error occurred, the operation didn't complete succesfully + /// HasError: true when an error occurred, the operation didn't complete successfully /// public bool HasError { get; private set; } }