summaryrefslogtreecommitdiff
path: root/jsonschema
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2022-08-31 10:33:43 +0300
committerJulian Berman <Julian@GrayVines.com>2022-08-31 10:33:43 +0300
commit420fc6bd9a3ecc4cd637ece97cb4b482b4d0d37e (patch)
tree780ead2dc47898ef5101e29b2576caea535e6f44 /jsonschema
parent8ce8250897e1b2e9b1fea6825965dbc876ec1f4d (diff)
downloadjsonschema-420fc6bd9a3ecc4cd637ece97cb4b482b4d0d37e.tar.gz
Minor verbiage tweak for protocols.v4.15.0
Diffstat (limited to 'jsonschema')
-rw-r--r--jsonschema/protocols.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/jsonschema/protocols.py b/jsonschema/protocols.py
index 1f4384d..2a8f00d 100644
--- a/jsonschema/protocols.py
+++ b/jsonschema/protocols.py
@@ -48,7 +48,7 @@ from jsonschema.exceptions import ValidationError
@runtime_checkable
class Validator(Protocol):
"""
- The protocol to which all validator classes should adhere.
+ The protocol to which all validator classes adhere.
Arguments:
@@ -95,7 +95,7 @@ class Validator(Protocol):
TYPE_CHECKER: ClassVar[jsonschema.TypeChecker]
#: A `jsonschema.FormatChecker` that will be used when validating
- #: :kw:`format` properties in JSON schemas.
+ #: :kw:`format` keywords in JSON schemas.
FORMAT_CHECKER: ClassVar[jsonschema.FormatChecker]
#: A function which given a schema returns its ID.