Skip to content

Commit 1e87935

Browse files
authored
docs: minor improvements (#1120)
minor doc improvement
1 parent fe61ffd commit 1e87935

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Install YAPF in your local dev environment:
6565

6666
In this repository, Nox is used to automate testing, linting, and to build
6767
documentation. Nox manages virtual environments for you, specifying Python
68-
versions and installing the the local, dynamic version of the Plant SDK for
68+
versions and installing the local, dynamic version of the Planet SDK for
6969
Python and required development packages.
7070

7171
To run nox with the default sessions (same checks as CI: lint, analyze, test,

DESIGN.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ operations are supported.
1717

1818
The principles of the interface design, ordered according to priority, are:
1919
* Map the API names and endpoints as close as possible
20-
* Synchronoize the Python API and CLI
20+
* Synchronize the Python API and CLI
2121
* Adhere to command line design in:
2222
* Popular SDKs (aws and gcloud)
2323
* The geospatial toolset (gdal, rasterio)
@@ -51,5 +51,5 @@ that can be returned at the end of running a Planet CLI command.
5151
| Value | Description |
5252
| ----------- | ----------- |
5353
| 0 | Command was run successfully. |
54-
| 1 | An error occured while the command was running. |
54+
| 1 | An error occurred while the command was running. |
5555
| 2 | Command was not run due to invalid syntax or unknown or invalid parameter.|

planet/http.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ async def throttle(self):
165165
break
166166
elif now - self._last_call >= self.cadence:
167167
LOGGER.debug(
168-
f'Throught throttle, delta: {now - self._last_call}')
168+
f'Through throttle, delta: {now - self._last_call}')
169169
self._last_call = now
170170
break
171171
await asyncio.sleep(self.retry_interval)

0 commit comments

Comments
 (0)