Spelling corrections plus CI job for codespell

* Use codespell to check spelling in documentation, refs #1417
* Fixed spelling errors spotted by codespell, closes #1417
* Make codespell a docs dependency

See also this TIL:  https://til.simonwillison.net/python/codespell
This commit is contained in:
Simon Willison 2021-08-03 09:36:38 -07:00 committed by GitHub
commit 2208c3c68e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 42 additions and 16 deletions

View file

@ -431,13 +431,13 @@ It offers the following methods:
``await datasette.client.get(path, **kwargs)`` - returns HTTPX Response
Execute an internal GET request against that path.
``await datasette.client.post(path, **kwargs)`` - returns HTTPX Respons
``await datasette.client.post(path, **kwargs)`` - returns HTTPX Response
Execute an internal POST request. Use ``data={"name": "value"}`` to pass form parameters.
``await datasette.client.options(path, **kwargs)`` - returns HTTPX Response
Execute an internal OPTIONS request.
``await datasette.client.head(path, **kwargs)`` - returns HTTPX Respons
``await datasette.client.head(path, **kwargs)`` - returns HTTPX Response
Execute an internal HEAD request.
``await datasette.client.put(path, **kwargs)`` - returns HTTPX Response
@ -714,7 +714,7 @@ The ``Database`` class also provides properties and methods for introspecting th
List of names of tables in the database.
``await db.view_names()`` - list of strings
List of names of views in tha database.
List of names of views in the database.
``await db.table_columns(table)`` - list of strings
Names of columns in a specific table.