diff --git a/src/KubernetesClient/ExecAsyncCallback.cs b/src/KubernetesClient/ExecAsyncCallback.cs
index fcaaaf1..6ad735d 100644
--- a/src/KubernetesClient/ExecAsyncCallback.cs
+++ b/src/KubernetesClient/ExecAsyncCallback.cs
@@ -8,7 +8,7 @@ namespace k8s
/// a container.
///
///
- /// The standard intput stream of the process.
+ /// The standard input stream of the process.
///
///
/// The standard output stream of the process.
diff --git a/src/KubernetesClient/GenericClient.cs b/src/KubernetesClient/GenericClient.cs
index ebad396..a466dcd 100644
--- a/src/KubernetesClient/GenericClient.cs
+++ b/src/KubernetesClient/GenericClient.cs
@@ -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)
diff --git a/src/KubernetesClient/IKubernetesObject.cs b/src/KubernetesClient/IKubernetesObject.cs
index 9695259..aab7ef5 100644
--- a/src/KubernetesClient/IKubernetesObject.cs
+++ b/src/KubernetesClient/IKubernetesObject.cs
@@ -35,7 +35,7 @@ namespace k8s
}
/// Represents a generic Kubernetes object that has an API version, a kind, and metadata.
- /// type of metedata
+ /// type of metadata
public interface IKubernetesObject : IKubernetesObject, IMetadata
{
}