From d34671b42bd28929dbeb2fdcc872684999c5c1ab Mon Sep 17 00:00:00 2001 From: Adam Friedman Date: Thu, 26 Sep 2019 15:59:39 +1000 Subject: [PATCH] Fix copy-paste error in doc comments tintoy/dotnet-kube-client#98 --- src/KubeClient/ResourceClients/DynamicResourceClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/KubeClient/ResourceClients/DynamicResourceClient.cs b/src/KubeClient/ResourceClients/DynamicResourceClient.cs index c439b448..1d32fbc4 100644 --- a/src/KubeClient/ResourceClients/DynamicResourceClient.cs +++ b/src/KubeClient/ResourceClients/DynamicResourceClient.cs @@ -447,7 +447,7 @@ public async Task ApplyYaml(string name, string kind, string api /// An optional that can be used to cancel the request. /// /// - /// A representing the resource's most recent state before it was deleted, if is ; otherwise, a indicating the operation result. + /// A representing the resource's most recent state before it was deleted, if is ; otherwise, a indicating the operation result. /// public async Task> Delete(string name, string kind, string apiVersion, string kubeNamespace = null, DeletePropagationPolicy? propagationPolicy = null, CancellationToken cancellationToken = default) { @@ -766,7 +766,7 @@ Task Apply(TResource resource, string fieldManager, bool f /// An optional that can be used to cancel the request. /// /// - /// A representing the resource's most recent state before it was deleted, if is ; otherwise, a indicating the operation result. + /// A representing the resource's most recent state before it was deleted, if is ; otherwise, a indicating the operation result. /// Task> Delete(string name, string kind, string apiVersion, string kubeNamespace = null, DeletePropagationPolicy? propagationPolicy = null, CancellationToken cancellationToken = default); }