summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGert Van Gool <gertvangool@gmail.com>2014-06-26 11:33:09 +0200
committerTim Graham <timograham@gmail.com>2014-06-26 07:23:32 -0400
commita8c5630c98ca826c1ea20ff196333ee9688c3a78 (patch)
treebeb1d258cf58bec7fd021277f8748c533829c60d /docs
parent0d363b25b82b0a86b7243512470f364bef92bc3d (diff)
Fixed typo in parameter name doc for BaseCommand.check().
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/custom-management-commands.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/howto/custom-management-commands.txt b/docs/howto/custom-management-commands.txt
index c43af9672d..da88df7f1b 100644
--- a/docs/howto/custom-management-commands.txt
+++ b/docs/howto/custom-management-commands.txt
@@ -369,8 +369,9 @@ the :meth:`~BaseCommand.handle` method must be implemented.
potential problems. Serious problems are raised as a :class:`CommandError`;
warnings are output to stderr; minor notifications are output to stdout.
- If ``apps`` and ``tags`` are both None, all system checks are performed.
- ``tags`` can be a list of check tags, like ``compatibility`` or ``models``.
+ If ``app_configs`` and ``tags`` are both ``None``, all system checks are
+ performed. ``tags`` can be a list of check tags, like ``compatibility`` or
+ ``models``.
.. method:: BaseCommand.validate(app=None, display_num_errors=False)