From a9b8eea2e6ab95b602fa35407232bdb124b90913 Mon Sep 17 00:00:00 2001 From: skubiak Date: Wed, 7 Jan 2015 16:39:44 +0100 Subject: [PATCH] updated readme.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e976527..7ceb7bc 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Usage new JPushover() .token("MyToken") .user("MyUser") - .message("MyPusher") + .message("MyMessage") .push(); If you want more information and/or the response from Pushover API, use the JPushoverResponse object. @@ -30,7 +30,7 @@ If you want more information and/or the response from Pushover API, use the JPus JPushoverResponse jPushoverResponse = new JPushover() .token("MyToken") .user("MyUser") - .message("MyPusher") + .message("MyMessage") .push(); JPushoverResponse will return the raw HTTP status code, along with the raw JSON response and a convenient boolean if the request was successful or not.