Skip to content

Commit 26c1f2b

Browse files
n2ygkauvipy
authored andcommitted
possesives and contractions inadvertently changed to double-quote
1 parent 991e480 commit 26c1f2b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

oauth2_provider/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
class AbstractApplication(models.Model):
2323
"""
2424
An Application instance represents a Client on the Authorization server.
25-
Usually an Application is created manually by client"s developers after
25+
Usually an Application is created manually by client's developers after
2626
logging in on an Authorization Server.
2727
2828
Fields:
@@ -260,7 +260,7 @@ class Meta(AbstractGrant.Meta):
260260
class AbstractAccessToken(models.Model):
261261
"""
262262
An AccessToken instance represents the actual access token to
263-
access user"s resources, as in :rfc:`5`.
263+
access user's resources, as in :rfc:`5`.
264264
265265
Fields:
266266

oauth2_provider/settings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
This module is largely inspired by django-rest-framework settings.
33
44
Settings for the OAuth2 Provider are all namespaced in the OAUTH2_PROVIDER setting.
5-
For example your project"s `settings.py` file might look like this:
5+
For example your project's `settings.py` file might look like this:
66
77
OAUTH2_PROVIDER = {
88
"CLIENT_ID_GENERATOR_CLASS":
@@ -182,9 +182,9 @@ def server_kwargs(self):
182182
This is used to communicate settings to oauth server.
183183
184184
Takes relevant settings and format them accordingly.
185-
There"s also EXTRA_SERVER_KWARGS that can override every value
185+
There's also EXTRA_SERVER_KWARGS that can override every value
186186
and is more flexible regarding keys and acceptable values
187-
but doesn"t have import string magic or any additional
187+
but doesn't have import string magic or any additional
188188
processing, callables have to be assigned directly.
189189
For the likes of signed_token_generator it means something like
190190

0 commit comments

Comments
 (0)