From 420fc6bd9a3ecc4cd637ece97cb4b482b4d0d37e Mon Sep 17 00:00:00 2001 From: Julian Berman Date: Wed, 31 Aug 2022 10:33:43 +0300 Subject: [PATCH] Minor verbiage tweak for protocols. --- jsonschema/protocols.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jsonschema/protocols.py b/jsonschema/protocols.py index 1f4384d67..2a8f00dda 100644 --- a/jsonschema/protocols.py +++ b/jsonschema/protocols.py @@ -48,7 +48,7 @@ @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.