From 22477315f4e42fab633188ad11eb495bf69556fd Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Thu, 28 Sep 2017 10:44:34 -0700 Subject: [PATCH] Fix typo in deployment.md --- docs/concepts/workloads/controllers/deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/workloads/controllers/deployment.md b/docs/concepts/workloads/controllers/deployment.md index 862c190144..f4a4e07fd2 100644 --- a/docs/concepts/workloads/controllers/deployment.md +++ b/docs/concepts/workloads/controllers/deployment.md @@ -88,7 +88,7 @@ Notice how the values in each field correspond to the values in the Deployment s * The number of desired replicas is 3 according to `spec: replicas` field. * The number of current replicas is 0 according to the `.status.replicas` field. -* The number of up-to-date replicas is 0 accoridng to the `.status.updatedReplicas` field. +* The number of up-to-date replicas is 0 according to the `.status.updatedReplicas` field. * The number of available replicas is 0 according to the `.status.availableReplicas` field. To see the Deployment rollout status, run `kubectl rollout status deployment/nginx-deployment`. This command returns the following output: