Skip to content

Commit

Permalink
docs: fix simple typo, refered -> referred
Browse files Browse the repository at this point in the history
There is a small typo in README.md.

Should read `referred` rather than `refered`.
  • Loading branch information
timgates42 committed Nov 23, 2021
1 parent d04a171 commit 49537cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def facebook_login(request):
facebook = Pyfb(FACEBOOK_APP_ID)
return HttpResponseRedirect(facebook.get_auth_code_url(redirect_uri=FACEBOOK_REDIRECT_URL))

#This view must be refered in your FACEBOOK_REDIRECT_URL. For example: http://www.mywebsite.com/facebook_login_success/
#This view must be referred in your FACEBOOK_REDIRECT_URL. For example: http://www.mywebsite.com/facebook_login_success/
def facebook_login_success(request):

code = request.GET.get('code')
Expand Down Expand Up @@ -159,7 +159,7 @@ def facebook_login(request):
return HttpResponseRedirect(facebook.get_auth_code_url(redirect_uri=FACEBOOK_REDIRECT_URL))


#This view must be refered in your FACEBOOK_REDIRECT_URL. For example: http://www.mywebsite.com/facebook_login_success/
#This view must be referred in your FACEBOOK_REDIRECT_URL. For example: http://www.mywebsite.com/facebook_login_success/
def facebook_login_success(request):

code = request.GET.get('code')
Expand Down

0 comments on commit 49537cc

Please sign in to comment.