From 71fe432b9591640168944cd92357d07de727234b Mon Sep 17 00:00:00 2001 From: JustSong Date: Thu, 22 Dec 2022 10:30:40 +0800 Subject: [PATCH] docs: update examples --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 27527fc..1827ac9 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ MESSAGE_PUSHER_TOKEN="666" function send_message { curl -s -X POST "$MESSAGE_PUSHER_SERVER/push/$MESSAGE_PUSHER_USERNAME" \ -H 'Content-Type: application/json' \ - -d '{"title":"'"$1"'","description":"'"$2"'", "content":"'"$3"'", "token":"'"$MESSAGE_PUSHER_TOKEN"'"}' \ + -d '{"title":"'"$1"'","desp":"'"$2"'", "content":"'"$3"'", "token":"'"$MESSAGE_PUSHER_TOKEN"'"}' \ >/dev/null }