summaryrefslogtreecommitdiffstats
path: root/doc/integrations
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-10-07 11:50:54 -0400
committerJoramWilander <jwawilander@gmail.com>2015-10-07 11:50:54 -0400
commit3b5228cc6f9d5edc2679de173c7b4961588864be (patch)
tree8c8287280f5727f8669ff5cb81f18c17206c9cab /doc/integrations
parent7d2ff7ce7849814296792f73cc6c4c867a9fccef (diff)
downloadchat-3b5228cc6f9d5edc2679de173c7b4961588864be.tar.gz
chat-3b5228cc6f9d5edc2679de173c7b4961588864be.tar.bz2
chat-3b5228cc6f9d5edc2679de173c7b4961588864be.zip
Add missing -d to webhook doc.
Diffstat (limited to 'doc/integrations')
-rw-r--r--doc/integrations/webhooks/Incoming.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/integrations/webhooks/Incoming.md b/doc/integrations/webhooks/Incoming.md
index 6e25f182e..0814eb420 100644
--- a/doc/integrations/webhooks/Incoming.md
+++ b/doc/integrations/webhooks/Incoming.md
@@ -56,7 +56,7 @@ payload={"channel": "off-topic", "text": "Hello, this is some text."}
Combining everything above, here is an example message made using a curl command:
```
-curl -i -X POST 'payload={"channel": "off-topic", "text": "Hello, this is some text."}' http://yourmattermost.com/hooks/xxxxxxxxxxxxxxxxxxxxxxxxxx
+curl -i -X POST -d 'payload={"channel": "off-topic", "text": "Hello, this is some text."}' http://yourmattermost.com/hooks/xxxxxxxxxxxxxxxxxxxxxxxxxx
```
A post with that text will be made to the Off-Topic channel.