Skip to content

Commit

Permalink
Fix copy-paste error in doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tintoy committed Sep 26, 2019
1 parent 773efe5 commit d34671b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/KubeClient/ResourceClients/DynamicResourceClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ public async Task<KubeResourceV1> ApplyYaml(string name, string kind, string api
/// An optional <see cref="CancellationToken"/> that can be used to cancel the request.
/// </param>
/// <returns>
/// A <see cref="PodV1"/> representing the resource's most recent state before it was deleted, if <paramref name="propagationPolicy"/> is <see cref="DeletePropagationPolicy.Foreground"/>; otherwise, a <see cref="StatusV1"/> indicating the operation result.
/// A <see cref="KubeResourceV1"/> representing the resource's most recent state before it was deleted, if <paramref name="propagationPolicy"/> is <see cref="DeletePropagationPolicy.Foreground"/>; otherwise, a <see cref="StatusV1"/> indicating the operation result.
/// </returns>
public async Task<KubeResourceResultV1<KubeResourceV1>> Delete(string name, string kind, string apiVersion, string kubeNamespace = null, DeletePropagationPolicy? propagationPolicy = null, CancellationToken cancellationToken = default)
{
Expand Down Expand Up @@ -766,7 +766,7 @@ Task<TResource> Apply<TResource>(TResource resource, string fieldManager, bool f
/// An optional <see cref="CancellationToken"/> that can be used to cancel the request.
/// </param>
/// <returns>
/// A <see cref="PodV1"/> representing the resource's most recent state before it was deleted, if <paramref name="propagationPolicy"/> is <see cref="DeletePropagationPolicy.Foreground"/>; otherwise, a <see cref="StatusV1"/> indicating the operation result.
/// A <see cref="KubeResourceV1"/> representing the resource's most recent state before it was deleted, if <paramref name="propagationPolicy"/> is <see cref="DeletePropagationPolicy.Foreground"/>; otherwise, a <see cref="StatusV1"/> indicating the operation result.
/// </returns>
Task<KubeResourceResultV1<KubeResourceV1>> Delete(string name, string kind, string apiVersion, string kubeNamespace = null, DeletePropagationPolicy? propagationPolicy = null, CancellationToken cancellationToken = default);
}
Expand Down

0 comments on commit d34671b

Please sign in to comment.