Skip to content

Commit 3f95092

Browse files
authored
Fix typos (#187)
Found via `codespell -S ./src/check_jsonschema/builtin_schemas/vendor -L shttp,testng,clude,nwe,crate,edn`
1 parent eb973af commit 3f95092

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/check_jsonschema/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def format_opts(self) -> FormatOptions:
146146
is_flag=True,
147147
help=(
148148
"Instead of validating the instances against a schema, treat each file as a "
149-
"schema and validate them under ther matching metaschemas."
149+
"schema and validate them under their matching metaschemas."
150150
),
151151
)
152152
@click.option(

src/check_jsonschema/schema_loader/resolver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ def make_ref_resolver(
3838
return None
3939

4040
base_uri = schema.get("$id", schema_uri)
41-
# FIXME: temporary type-ignore beause typeshed has the type wrong
41+
# FIXME: temporary type-ignore because typeshed has the type wrong
4242
return _CliRefResolver(base_uri, schema) # type: ignore[arg-type]

0 commit comments

Comments
 (0)