Skip to content

Commit

Permalink
Fix minor typo with tense.
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonfierce authored and lepture committed Mar 27, 2015
1 parent 78979c6 commit 64d82c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/oauth2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ Also in SQLAlchemy model (would be better if it is in a cache)::
Bearer Token
------------

A bearer token is the final token that could be use by the client. There
A bearer token is the final token that could be used by the client. There
are other token types, but bearer token is widely used. Flask-OAuthlib only
comes with bearer token.

Expand Down Expand Up @@ -429,9 +429,9 @@ The authorization flow is finished, everything should be working now.

Revoke handler
``````````````
In some cases a user may wish to revoke access given to an application and the
revoke handler makes it possible for an application to programmaticaly revoke
the access given to it. Also here you don't need to do much, allowing POST only
In some cases a user may wish to revoke access given to an application and the
revoke handler makes it possible for an application to programmaticaly revoke
the access given to it. Also here you don't need to do much, allowing POST only
is recommended::

@app.route('/oauth/revoke', methods=['POST'])
Expand Down

0 comments on commit 64d82c7

Please sign in to comment.