Added backticks to code literals in various docs.

This commit is contained in:
Jon Dufresne 2020-12-14 22:19:00 -08:00 committed by GitHub
parent 593829a5ab
commit 550297d20d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 12 additions and 10 deletions

View file

@ -153,7 +153,7 @@ protects against memory exhaustion attacks using forged ``POST`` requests::
>>> formset.non_form_errors()
['Please submit at most 1000 forms.']
When ``absolute_max`` is None, it defaults to ``max_num + 1000``. (If
When ``absolute_max`` is ``None``, it defaults to ``max_num + 1000``. (If
``max_num`` is ``None``, it defaults to ``2000``).
If ``absolute_max`` is less than ``max_num``, a ``ValueError`` will be raised.