From d03a062059a7a4efd54deedaf9f6cfd4273ac550 Mon Sep 17 00:00:00 2001 From: Ben Kluck Date: Thu, 9 Oct 2014 19:26:12 +0200 Subject: [PATCH] Fix syntax highlighting in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c7d1e99..72665d2 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ That's all! You can simulate this POST request and test your server with a simple cURL command: -```shell +```sh curl -X POST --data "from=492111234567&to=4915791234567" http://localhost:3000 ``` @@ -67,7 +67,7 @@ How do I inspect network traffic? --------------------------------- You can use ```ngrep``` to inspect the incoming requests on your side: -```shell +```sh sudo ngrep -dany -Wbyline port 3000 ```