Skip to content

Commit

Permalink
Fixed spelling error, refs #2089
Browse files Browse the repository at this point in the history
Also ensure codespell runs as part of just lint
  • Loading branch information
simonw committed Jun 29, 2023
1 parent 84b32b4 commit 99ba051
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export DATASETTE_SECRET := "not_a_secret"
pipenv run codespell datasette -S datasette/static --ignore-words docs/codespell-ignore-words.txt

# Run linters: black, flake8, mypy, cog
@lint:
@lint: codespell
pipenv run black . --check
pipenv run flake8
pipenv run cog --check README.md docs/*.rst
Expand Down
2 changes: 1 addition & 1 deletion docs/metadata.rst
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ Or use ``"sort_desc"`` to sort in descending order:
Setting a custom page size
--------------------------

Datasette defaults to displaing 100 rows per page, for both tables and views. You can change this default page size on a per-table or per-view basis using the ``"size"`` key in ``metadata.json``:
Datasette defaults to displaying 100 rows per page, for both tables and views. You can change this default page size on a per-table or per-view basis using the ``"size"`` key in ``metadata.json``:

.. code-block:: json
Expand Down

0 comments on commit 99ba051

Please sign in to comment.