From 246eaf35c040a6387d5ddd6789cbb1efb9669dbc Mon Sep 17 00:00:00 2001
From: Kelsey Hightower <kelsey.hightower@gmail.com>
Date: Fri, 8 Jul 2016 16:45:43 -0700
Subject: [PATCH] clean up docs

---
 docs/01-infrastructure.md | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/docs/01-infrastructure.md b/docs/01-infrastructure.md
index 8319207..95383fb 100644
--- a/docs/01-infrastructure.md
+++ b/docs/01-infrastructure.md
@@ -33,6 +33,8 @@ To make our Kubernetes control plane remotely accessible, a public IP address wi
 gcloud compute networks create kubernetes --mode custom
 ```
 
+Output:
+
 ```
 NAME        MODE    IPV4_RANGE  GATEWAY_IPV4
 kubernetes  custom
@@ -41,10 +43,12 @@ kubernetes  custom
 ```
 gcloud compute networks subnets create kubernetes \
   --network kubernetes \
-  --region us-central1 \
-  --range 10.240.0.0/24
+  --range 10.240.0.0/24 \
+  --region us-central1
 ```
 
+Output:
+
 ```
 NAME        REGION       NETWORK     RANGE
 kubernetes  us-central1  kubernetes  10.240.0.0/24