Fixed some ReST errors regarding backticks

This commit is contained in:
Tim Graham 2013-08-15 07:14:10 -04:00
parent 354009d67e
commit 29255fcb4f
12 changed files with 19 additions and 17 deletions

View file

@ -295,9 +295,9 @@ validation process will break.
Therefore, you must ensure that the form field used to represent your
custom field performs whatever input validation and data cleaning is
necessary to convert user-provided form input into a
`to_python()`-compatible model field value. This may require writing a
``to_python()``-compatible model field value. This may require writing a
custom form field, and/or implementing the :meth:`.formfield` method on
your field to return a form field class whose `to_python()` returns the
your field to return a form field class whose ``to_python()`` returns the
correct datatype.
Documenting your custom field