Skip to content

Commit 6562b58

Browse files
nloadholtestseaver
authored andcommitted
Fix typo in filename used in 'docs/auth.md'. (#736)
1 parent c2936e1 commit 6562b58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/oauth.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The purpose of a `Flow` class is to acquire credentials that authorize your appl
3333

3434
### flow_from_clientsecrets()
3535

36-
The [oauth2client.client.flow_from_clientsecrets()](http://oauth2client.readthedocs.org/en/latest/source/oauth2client.client.html#oauth2client.client.flow_from_clientsecrets) method creates a `Flow` object from a [client_secrets.json](client_secrets.md) file. This [JSON](http://www.json.org/) formatted file stores your client ID, client secret, and other OAuth 2.0 parameters.
36+
The [oauth2client.client.flow_from_clientsecrets()](http://oauth2client.readthedocs.org/en/latest/source/oauth2client.client.html#oauth2client.client.flow_from_clientsecrets) method creates a `Flow` object from a [client_secrets.json](client-secrets.md) file. This [JSON](http://www.json.org/) formatted file stores your client ID, client secret, and other OAuth 2.0 parameters.
3737

3838
The following shows how you can use `flow_from_clientsecrets()` to create a `Flow` object:
3939

@@ -177,4 +177,4 @@ parser = argparse.ArgumentParser(parents=[tools.argparser])
177177
flags = parser.parse_args()
178178
...
179179
credentials = tools.run_flow(flow, storage, flags)
180-
```
180+
```

0 commit comments

Comments
 (0)