This commit is contained in:
Chris McDonough
2010-03-17 20:55:25 +00:00
parent 9481e7180b
commit 0d22119c9e
2 changed files with 5 additions and 7 deletions

View File

@@ -45,14 +45,12 @@ Types
.. autoclass:: GlobalObject
Other
~~~~~
Schema-Related
~~~~~~~~~~~~~~
.. autoclass:: Structure(typ,*structs,name='',default=MISSING,validator=None)
.. autoclass:: SchemaNode(typ,*nodes,name='',default=MISSING,validator=None)
:members:
.. autoclass:: Struct
.. autoclass:: Schema
.. autoclass:: MappingSchema

View File

@@ -118,8 +118,8 @@ of our definitions, a ``Person`` represents:
~~~~~~~~~~~~~~~~~~~~~~
A schema is composed of one or more *schema node* objects, each
typically of the class ``colander.SchemaNode``, usually in a nested
arrangement. Each schema node object has a required *type*, an
typically of the class :class:`colander.SchemaNode`, usually in a
nested arrangement. Each schema node object has a required *type*, an
optional deserialization *validator*, an optional *default*, and a
slightly less optional *name*.