Skip to content

Commit

Permalink
Fix casing for docs links
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Jan 11, 2025
1 parent 0966e6d commit f508083
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions docs/custom_fields.rst
Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,5 @@ Error messages can also be passed to a `Field's` constructor.
Next steps
----------

- Need to add schema-level validation, post-processing, or error handling behavior? See the :doc:`Extending schemas <extending>` page.
- For example applications using marshmallow, check out the :doc:`Examples <examples>` page.
- Need to add schema-level validation, post-processing, or error handling behavior? See the :doc:`extending` page.
- For example applications using marshmallow, check out the :doc:`examples` page.
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ marshmallow

*Object serialization and deserialization, lightweight and fluffy.*

Release v\ |version|. (:doc:`Changelog <changelog>`)
Release v\ |version|. (:doc:`changelog`)

----

Expand Down
6 changes: 3 additions & 3 deletions docs/nesting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,6 @@ If the object to be marshalled has a relationship to an object of the same type,
Next steps
----------

- Want to create your own field type? See the :doc:`Custom Fields <custom_fields>` page.
- Need to add schema-level validation, post-processing, or error handling behavior? See the :doc:`Extending Schemas <extending>` page.
- For example applications using marshmallow, check out the :doc:`Examples <examples>` page.
- Want to create your own field type? See the :doc:`custom_fields` page.
- Need to add schema-level validation, post-processing, or error handling behavior? See the :doc:`extending` page.
- For example applications using marshmallow, check out the :doc:`examples` page.
10 changes: 5 additions & 5 deletions docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ You may also pass a collection (list, tuple, generator) of callables to ``valida

You can register a custom error handler function for a schema by overriding the
:func:`handle_error <Schema.handle_error>` method.
See the :doc:`Extending Schemas <extending>` page for more info.
See the :doc:`extending` page for more info.

.. seealso::

Expand Down Expand Up @@ -542,7 +542,7 @@ Note that ``name`` will be automatically formatted as a :class:`String <marshmal
Next steps
----------
- Need to represent relationships between objects? See the :doc:`Nesting Schemas <nesting>` page.
- Want to create your own field type? See the :doc:`Custom Fields <custom_fields>` page.
- Need to add schema-level validation, post-processing, or error handling behavior? See the :doc:`Extending Schemas <extending>` page.
- For example applications using marshmallow, check out the :doc:`Examples <examples>` page.
- Need to represent relationships between objects? See the :doc:`nesting` page.
- Want to create your own field type? See the :doc:`custom_fields` page.
- Need to add schema-level validation, post-processing, or error handling behavior? See the :doc:`extending` page.
- For example applications using marshmallow, check out the :doc:`examples` page.
8 changes: 4 additions & 4 deletions docs/upgrading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ raised at the end of the process.
When reporting error messages as `dict`, the keys should refer to subitems
of the item the message refers to, and the values should be error messages.

See the "Schema-level Validation" section of :doc:`Extending Schemas <extending>`
See the "Schema-level Validation" section of :doc:`extending`
page for an example.

Schemas raise ``ValidationError`` when deserializing data with unknown keys
Expand Down Expand Up @@ -1284,7 +1284,7 @@ The pre- and post-processing API was significantly improved for better consisten
data["field_a"] -= 1
return data
See the :doc:`Extending Schemas <extending>` page for more information on the ``pre_*`` and ``post_*`` decorators.
See the :doc:`extending` page for more information on the ``pre_*`` and ``post_*`` decorators.

Schema validators
*****************
Expand Down Expand Up @@ -1625,7 +1625,7 @@ The default error messages for many fields and validators have been changed for
More
****

For a full list of changes in 2.0, see the :doc:`Changelog <changelog>`.
For a full list of changes in 2.0, see the :doc:`changelog <changelog>`.


Upgrading to 1.2
Expand Down Expand Up @@ -1761,4 +1761,4 @@ Other notable changes:

.. seealso::

See the :doc:`Changelog <changelog>` for a more complete listing of added features, bugfixes and breaking changes.
See the :doc:`changelog <changelog>` for a more complete listing of added features, bugfixes and breaking changes.

0 comments on commit f508083

Please sign in to comment.