diff options
author | David Robillard <d@drobilla.net> | 2022-11-24 09:28:00 -0500 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-11-24 15:17:23 -0500 |
commit | e85138fcc8373f925709124f8586a6feecf968d1 (patch) | |
tree | b5051f163c9f3e2bf9e8e752e6d0a8c6e071a936 /docs/refman | |
parent | 9d1b59fa7ff1a1a31599a04a02c48c6b41026c2c (diff) | |
download | meson-e85138fcc8373f925709124f8586a6feecf968d1.zip meson-e85138fcc8373f925709124f8586a6feecf968d1.tar.gz meson-e85138fcc8373f925709124f8586a6feecf968d1.tar.bz2 |
Fix various spelling errors
Found with codespell.
Diffstat (limited to 'docs/refman')
-rw-r--r-- | docs/refman/jsonschema.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/refman/jsonschema.py b/docs/refman/jsonschema.py index 00c0b5e..e64bf06 100644 --- a/docs/refman/jsonschema.py +++ b/docs/refman/jsonschema.py @@ -26,7 +26,7 @@ class BaseObject(T.TypedDict): class Type(T.TypedDict): obj: str # References an object from `root.objects` - holds: T.Sequence[object] # Mypy does not support recusive dicts, but this should be T.List[Type]... + holds: T.Sequence[object] # Mypy does not support recursive dicts, but this should be T.List[Type]... class Argument(BaseObject): ''' |