summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2022-09-10 03:48:40 -0400
committerJulian Berman <Julian@GrayVines.com>2022-09-10 10:51:16 +0300
commit18a855bb90063e324175ad9acd497332814aac8b (patch)
treee654a9f38f840448c05291d83f9641b732d70d92 /docs
parent80462327ed004758f4250236f49ddaef8bc01f74 (diff)
downloadjsonschema-18a855bb90063e324175ad9acd497332814aac8b.tar.gz
Better wording.
Co-authored-by: Hynek Schlawack <hs@ox.cx>
Diffstat (limited to 'docs')
-rw-r--r--docs/validate.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/validate.rst b/docs/validate.rst
index 95fee3d..3d04a9a 100644
--- a/docs/validate.rst
+++ b/docs/validate.rst
@@ -173,7 +173,8 @@ Validating Formats
------------------
JSON Schema defines the :kw:`format` keyword which can be used to check if primitive types (``string``\s, ``number``\s, ``boolean``\s) conform to well-defined formats.
-By default, as per the specification, no validation is enforced. Optionally however, validation can be enabled by hooking a `format-checking object <jsonschema.FormatChecker>` into a `Validator`.
+By default, as per the specification, no validation is enforced.
+Optionally however, validation can be enabled by hooking a `format-checking object <jsonschema.FormatChecker>` into a `Validator`.
.. doctest::