From 9da6a06fd586dded554923493ded1340f2cdd22a Mon Sep 17 00:00:00 2001 From: Eunchong Yu Date: Thu, 16 May 2013 18:08:51 +0900 Subject: Fix some typo --- examples/skeleton_oauth2_web_application_server.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples') diff --git a/examples/skeleton_oauth2_web_application_server.py b/examples/skeleton_oauth2_web_application_server.py index 95f7db2..5ef1081 100644 --- a/examples/skeleton_oauth2_web_application_server.py +++ b/examples/skeleton_oauth2_web_application_server.py @@ -16,9 +16,9 @@ from oauthlib.oauth2.ext.django import OAuth2ProviderDecorator class SkeletonValidator(RequestValidator): - # Ordered roughly in order of apperance in the authorization grant flow + # Ordered roughly in order of appearance in the authorization grant flow - # Pre- and Post-authorization. + # Pre- and post-authorization. def validate_client_id(self, client_id, request, *args, **kwargs): # Simple validity check, does client exist? Not banned? @@ -83,7 +83,7 @@ class SkeletonValidator(RequestValidator): pass def save_bearer_token(self, token, request, *args, **kwargs): - # Remeber to associate it with request.scopes, request.user and + # Remember to associate it with request.scopes, request.user and # request.client. The two former will be set when you validate # the authorization code. Don't forget to save both the # access_token and the refresh_token and set expiration for the -- cgit v1.2.1