Fixed spelling errors spotted by codespell, refs #1417

This commit is contained in:
Simon Willison 2021-08-03 09:24:56 -07:00
commit e459787a14
9 changed files with 15 additions and 15 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.