summaryrefslogtreecommitdiff
path: root/docs/faq.rst
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2014-12-07 12:48:03 -0500
committerJulian Berman <Julian@GrayVines.com>2014-12-07 12:48:03 -0500
commitadd447fbe562ef07ba36bb8d99a47adc5b9f3044 (patch)
treeaa874c1a0fc92cab611a47cb2f6457cee01f3165 /docs/faq.rst
parentfcb178774fdb39688a73cd048bbff9e046664fdc (diff)
downloadjsonschema-add447fbe562ef07ba36bb8d99a47adc5b9f3044.tar.gz
Try to be as explicit as possible on the million different uses of 'validator'.
Closes #175.
Diffstat (limited to 'docs/faq.rst')
-rw-r--r--docs/faq.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/faq.rst b/docs/faq.rst
index 4c1035f..7495cdb 100644
--- a/docs/faq.rst
+++ b/docs/faq.rst
@@ -16,10 +16,10 @@ It's perfectly valid (and perhaps even useful) to have a default that is not
valid under the schema it lives in! So an instance modified by the default
would pass validation the first time, but fail the second!
-Still, filling in defaults is a thing that is useful. :mod:`jsonschema` allows
-you to :doc:`define your own validators <creating>`, so you can easily create a
-:class:`IValidator` that does do default setting. Here's some code to get you
-started:
+Still, filling in defaults is a thing that is useful. :mod:`jsonschema`
+allows you to :doc:`define your own validator classes and callables
+<creating>`, so you can easily create a :class:`IValidator` that does do
+default setting. Here's some code to get you started:
.. code-block:: python