From 29621addd93be32f1a3e8b2dc695a7544c81b727 Mon Sep 17 00:00:00 2001 From: Jon Mosco Date: Thu, 21 Sep 2017 10:00:02 -0400 Subject: [PATCH] change send to sent, and change a period to be a colon to follow the rest of the guide --- docs/concepts/services-networking/ingress.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/concepts/services-networking/ingress.md b/docs/concepts/services-networking/ingress.md index f77b809e67..115903c240 100644 --- a/docs/concepts/services-networking/ingress.md +++ b/docs/concepts/services-networking/ingress.md @@ -105,7 +105,7 @@ NAME RULE BACKEND ADDRESS test-ingress - testsvc:80 107.178.254.228 ``` -Where `107.178.254.228` is the IP allocated by the Ingress controller to satisfy this Ingress. The `RULE` column shows that all traffic send to the IP is directed to the Kubernetes Service listed under `BACKEND`. +Where `107.178.254.228` is the IP allocated by the Ingress controller to satisfy this Ingress. The `RULE` column shows that all traffic sent to the IP is directed to the Kubernetes Service listed under `BACKEND`. ### Simple fanout @@ -239,7 +239,7 @@ test - 178.91.123.132 $ kubectl edit ing test ``` -This should pop up an editor with the existing yaml, modify it to include the new Host. +This should pop up an editor with the existing yaml, modify it to include the new Host: ```yaml spec: @@ -261,7 +261,7 @@ spec: .. ``` -saving it will update the resource in the API server, which should tell the Ingress controller to reconfigure the loadbalancer. +Saving it will update the resource in the API server, which should tell the Ingress controller to reconfigure the loadbalancer. ```shell $ kubectl get ing