summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDebayan De <debayande@users.noreply.github.com>2018-08-15 00:04:10 +0100
committerJosé Padilla <jpadilla@webapplicate.com>2018-08-14 19:04:10 -0400
commitd3ffeab58990021e0187a5ed07532945bdbb8d75 (patch)
treec76f172c41977700b660dda90ca7753d2f106580
parentc2a8559f6125490902c493e5815dd78097020da2 (diff)
downloadpyjwt-d3ffeab58990021e0187a5ed07532945bdbb8d75.tar.gz
Fixes example invocations in README.rst and docs/index.rst. (#368)
Signed-off-by: Debayan De <debayande@users.noreply.github.com>
-rw-r--r--README.rst4
-rw-r--r--docs/index.rst4
2 files changed, 4 insertions, 4 deletions
diff --git a/README.rst b/README.rst
index c1c1c84..59bd9f2 100644
--- a/README.rst
+++ b/README.rst
@@ -59,8 +59,8 @@ Usage::
Decoding examples::
- pyjwt --key=secret TOKEN
- pyjwt --no-verify TOKEN
+ pyjwt --key=secret decode TOKEN
+ pyjwt decode --no-verify TOKEN
See more options executing ``pyjwt --help``.
diff --git a/docs/index.rst b/docs/index.rst
index a3a8a41..e717bdd 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -51,8 +51,8 @@ Usage::
Decoding examples::
- pyjwt --key=secret TOKEN
- pyjwt --no-verify TOKEN
+ pyjwt --key=secret decode TOKEN
+ pyjwt decode --no-verify TOKEN
See more options executing ``pyjwt --help``.