documentation syntaxt issues resolved (#602)

This commit is contained in:
Ali Alp
2021-04-08 21:21:11 +03:00
committed by GitHub
parent f827736bf1
commit 17a89f2939
3 changed files with 6 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ namespace k8s
/// a container.
/// </summary>
/// <param name="stdIn">
/// The standard intput stream of the process.
/// The standard input stream of the process.
/// </param>
/// <param name="stdOut">
/// The standard output stream of the process.

View File

@@ -18,10 +18,10 @@ namespace k8s
}
}
private IKubernetes kubernetes;
private string group;
private string version;
private string plural;
private readonly IKubernetes kubernetes;
private readonly string group;
private readonly string version;
private readonly string plural;
public GenericClient(KubernetesClientConfiguration config, string group, string version, string plural)

View File

@@ -35,7 +35,7 @@ namespace k8s
}
/// <summary>Represents a generic Kubernetes object that has an API version, a kind, and metadata.</summary>
/// <typeparam name="TMetadata">type of metedata</typeparam>
/// <typeparam name="TMetadata">type of metadata</typeparam>
public interface IKubernetesObject<TMetadata> : IKubernetesObject, IMetadata<TMetadata>
{
}