From daa358611d9885f88aa7e9b9cc2991e58f2fd75d Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 3 Sep 2021 19:25:45 +1000 Subject: [PATCH] docs: Fix a few typos There are small typos in: - README.rst - fitbit/api.py Fixes: - Should read `permissions` rather than `pemissions`. - Should read `documentation` rather than `documention`. --- README.rst | 2 +- fitbit/api.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index e1a576d..f74925a 100644 --- a/README.rst +++ b/README.rst @@ -26,7 +26,7 @@ Requirements * Python 2.7+ * `python-dateutil`_ (always) * `requests-oauthlib`_ (always) -* `Sphinx`_ (to create the documention) +* `Sphinx`_ (to create the documentation) * `tox`_ (for running the tests) * `coverage`_ (to create test coverage reports) diff --git a/fitbit/api.py b/fitbit/api.py index 1b458b1..5c7a103 100644 --- a/fitbit/api.py +++ b/fitbit/api.py @@ -105,7 +105,7 @@ def authorize_token_url(self, scope=None, redirect_uri=None, **kwargs): authorization to look at their data. Then redirect the user to that URL, open their browser to it, or tell them to copy the URL into their browser. - - scope: pemissions that that are being requested [default ask all] + - scope: permissions that that are being requested [default ask all] - redirect_uri: url to which the response will posted. required here unless you specify only one Callback URL on the fitbit app or you already passed it to the constructor