diff options
| author | Sam Sandberg <sam.sandberg@gmail.com> | 2013-04-16 18:13:08 -0400 |
|---|---|---|
| committer | Sam Sandberg <sam.sandberg@gmail.com> | 2013-04-16 18:13:08 -0400 |
| commit | 73d82b3d0361d6a17bffc19a30142ec321465c63 (patch) | |
| tree | c0138d2a8487acc45a4484f3b13267d4d046d014 /docs | |
| parent | bbe26bc46f6e2cf208050a476f6ad09f28bcc8e7 (diff) | |
| download | oauthlib-73d82b3d0361d6a17bffc19a30142ec321465c63.tar.gz | |
fixing a few typos in the doc...
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/server2.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/server2.rst b/docs/server2.rst index 9b655f4..af8f66e 100644 --- a/docs/server2.rst +++ b/docs/server2.rst @@ -74,7 +74,7 @@ Note that OAuth 2 provider is still very much a work in progress, consider it a former is Authorization Code Grant and the latter Implicit Grant:: # max_length and choices depend on which response types you support - grant_type = django.db.models.CharField(max_length=4, + response_type = django.db.models.CharField(max_length=4, choices=[('Authorization code', 'code')]) **Scopes**: @@ -101,7 +101,7 @@ Note that OAuth 2 provider is still very much a work in progress, consider it a # serializing them into a string. redirect_uris = django.db.models.TextField() - # You might also want to mark a certain URI as defaul in case the + # You might also want to mark a certain URI as default in case the # client does not specify any in the authorization default_redirect_uri = django.db.models.TextField() |
