Skip to content

Commit

Permalink
docs(typos): typos --format brief --write-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Sep 2, 2023
1 parent c9b3de3 commit 61a4955
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ _Maintenance only, no bug fixes, or new features_
- Remove unnecessary use of `typing_extension`'s `TypedDict` (#346)

Note: `typing_extension`'s `TypedDict` is still
used for `NotRequired` `TypedDict`s until the minimum python version supprots
used for `NotRequired` `TypedDict`s until the minimum python version supports
them ([3.11](https://www.python.org/downloads/release/python-3110/) via [PEP-655](https://peps.python.org/pep-0655/))

## cihai 0.20.0 (2023-05-29)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
# sphinxext.opengraph
ogp_site_url = about["__docs__"]
ogp_image = "_static/img/icons/icon-192x192.png"
ogp_desscription_length = about["__description__"]
ogp_description_length = about["__description__"]
ogp_site_name = about["__title__"]

# sphinx-copybutton
Expand Down
2 changes: 1 addition & 1 deletion docs/extend.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ An example of this would be the
## Combining datasets

Combining general datasets in general is usually considered general library usage. But if you're
usage is common, saves from repetition, it's worth considering making into a reuseable extension and
usage is common, saves from repetition, it's worth considering making into a reusable extension and
open sourcing it.

Using the library to mix and match data from various sources is what cihai is meant to do! If you
Expand Down
2 changes: 1 addition & 1 deletion tests/test_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def test_insert_bad_key(
with engine.connect() as connection:
bad_key = connection.execute(
sqlalchemy.insert(sample_table),
[{"value": "", "char_id": "non_existant_char"}],
[{"value": "", "char_id": "non_existent_char"}],
)

assert bad_key
Expand Down

0 comments on commit 61a4955

Please sign in to comment.