From 98a90113bc16c18e11613b191fd85503b8c5b8da Mon Sep 17 00:00:00 2001 From: Juampy NR Date: Thu, 7 May 2020 10:18:06 +0200 Subject: [PATCH] Fix syntax error --- content/en/docs/tutorials/stateless-application/guestbook.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tutorials/stateless-application/guestbook.md b/content/en/docs/tutorials/stateless-application/guestbook.md index f1f93dd988..e8c71bc613 100644 --- a/content/en/docs/tutorials/stateless-application/guestbook.md +++ b/content/en/docs/tutorials/stateless-application/guestbook.md @@ -116,7 +116,7 @@ Although the Redis master is a single pod, you can make it highly available to m Deployments scale based off of the configurations set in the manifest file. In this case, the Deployment object specifies two replicas. -If there are not any replicas running, this Deployment would start the two replicas on your container cluster. Conversely, if there are more than two replicas are running, it would scale down until two replicas are running. +If there are not any replicas running, this Deployment would start the two replicas on your container cluster. Conversely, if there are more than two replicas running, it would scale down until two replicas are running. {{< codenew file="application/guestbook/redis-slave-deployment.yaml" >}}