update README
diff --git a/README.md b/README.md
index cf6e957..c322169 100644
--- a/README.md
+++ b/README.md
@@ -96,7 +96,7 @@
**Make calls before creating mixer rules**
```
-curl $GATE/get
+curl $GATEWAY/get
```
you will see response code **200**
```
@@ -115,7 +115,7 @@
**Make calls after creating mixer rules**
```
-curl -o /dev/null -s -w "%{http_code}\n" $GATE/get
+curl -o /dev/null -s -w "%{http_code}\n" $GATEWAY/get
```
Now since APIkey verfication fails, you will see reponse code either **403** or **500**
```
@@ -123,7 +123,7 @@
```
Try with a wrong API key
```
-curl -o /dev/null -s -w "%{http_code}\n" -H 'apikey: dsjcajcasbch' $GATE/get
+curl -o /dev/null -s -w "%{http_code}\n" -H 'apikey: dsjcajcasbch' $GATEWAY/get
```
```
403
@@ -142,7 +142,7 @@
Now that you have credentails to make API calls, let's make some more calls. This time pass the Consumer Key of the App that yo just created as header parameter.
```
-curl -o /dev/null -s -w "%{http_code}\n" -H 'apikey: <ConsumerKey>' $GATE/get
+curl -o /dev/null -s -w "%{http_code}\n" -H 'apikey: <ConsumerKey>' $GATEWAY/get
```
You should see response code 200
```