summaryrefslogtreecommitdiff
path: root/docs/creating.rst
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2017-12-24 14:38:39 -0500
committerJulian Berman <Julian@GrayVines.com>2017-12-24 14:38:39 -0500
commitba52a016fe28d39c4d97ce8ce5104ee43eeaf695 (patch)
treee7f027630579c2bab69d311097ed7df339d47b07 /docs/creating.rst
parent09b0fe490db81de9f41f93b23bfc9e0d721fda1f (diff)
downloadjsonschema-ba52a016fe28d39c4d97ce8ce5104ee43eeaf695.tar.gz
:class:es
Diffstat (limited to 'docs/creating.rst')
-rw-r--r--docs/creating.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/creating.rst b/docs/creating.rst
index f5af2e8..388bfe7 100644
--- a/docs/creating.rst
+++ b/docs/creating.rst
@@ -34,13 +34,13 @@ Creating or Extending Validator Classes
If set, it provides mappings of JSON types to Python types that will
be converted to functions and redefined in this object's
- :class:`jsonschema.TypeChecker`.
+ `jsonschema.TypeChecker`.
:argument jsonschema.TypeChecker type_checker: a type checker. If
- unprovided, a :class:`jsonschema.TypeChecker` will created with no
+ unprovided, a `jsonschema.TypeChecker` will created with no
supported types.
- :returns: a new :class:`jsonschema.IValidator` class
+ :returns: a new `jsonschema.IValidator` class
.. autofunction:: extend
@@ -66,9 +66,9 @@ Creating or Extending Validator Classes
:argument str version: a version for the new validator class
:argument jsonschema.TypeChecker type_checker: a type checker. If
- unprovided, the existing :class:`jsonschema.TypeChecker` will be used.
+ unprovided, the existing `jsonschema.TypeChecker` will be used.
- :returns: a new :class:`jsonschema.IValidator` class
+ :returns: a new `jsonschema.IValidator` class
.. note:: Meta Schemas
@@ -91,7 +91,7 @@ Creating or Extending Validator Classes
:argument schema: the schema to look at
:argument default: the default to return if the appropriate validator class
cannot be determined. If unprovided, the default is to return
- :class:`jsonschema.Draft4Validator`
+ `jsonschema.Draft4Validator`
.. autofunction:: validates