From 27f40573ad37ecb9d715a93dcc7f59fb54b4fd29 Mon Sep 17 00:00:00 2001 From: Ramon Pires da Silva Date: Wed, 25 Sep 2019 15:26:40 -0300 Subject: [PATCH] fix wrong identation (#1820) --- .../samples/knative-routing-go/README.md | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/serving/samples/knative-routing-go/README.md b/docs/serving/samples/knative-routing-go/README.md index b1c9c6d42..329da2d25 100644 --- a/docs/serving/samples/knative-routing-go/README.md +++ b/docs/serving/samples/knative-routing-go/README.md @@ -219,25 +219,25 @@ kubectl get VirtualService entry-route --output yaml --output jsonpath="{.status.loadBalancer.ingress[*]['ip']}"` ``` - * Send a request to the Search service: - ```shell - curl http://${GATEWAY_IP}/search --header "Host: example.com" - ``` - or - ```shell - curl http://${GATEWAY_IP}/search --header "Host: " - ``` - for the case using your own domain. +* Send a request to the Search service: + ```shell + curl http://${GATEWAY_IP}/search --header "Host: example.com" + ``` + or + ```shell + curl http://${GATEWAY_IP}/search --header "Host: " + ``` + for the case using your own domain. - * Send a request to the Login service: - ```shell - curl http://${GATEWAY_IP}/login --header "Host: example.com" - ``` - or - ```shell - curl http://${GATEWAY_IP}/login --header "Host: " - ``` - for the case using your own domain. + * Send a request to the Login service: + ```shell + curl http://${GATEWAY_IP}/login --header "Host: example.com" + ``` + or + ```shell + curl http://${GATEWAY_IP}/login --header "Host: " + ``` + for the case using your own domain. ## How It Works