diff --git a/django/contrib/comments/moderation.py b/django/contrib/comments/moderation.py
index e8cd08f..fd6f318 100644
a
|
b
|
class Moderator(object):
|
250 | 250 | models registered for comment moderation, and their associated |
251 | 251 | moderation classes, and apply moderation to all incoming comments. |
252 | 252 | |
253 | | To register a model, obtain an instance of ``CommentModerator`` |
254 | | (this module exports one as ``moderator``), and call its |
255 | | ``register`` method, passing the model class and a moderation |
256 | | class (which should be a subclass of ``CommentModerator``). Note |
257 | | that both of these should be the actual classes, not instances of |
258 | | the classes. |
| 253 | To register a model, obtain an instance of ``Moderator`` (this |
| 254 | module exports one as ``moderator``), and call its ``register`` |
| 255 | method, passing the model class and a moderation class (which |
| 256 | should be a subclass of ``CommentModerator``). Note that both of |
| 257 | these should be the actual classes, not instances of the classes. |
259 | 258 | |
260 | 259 | To cease moderation for a model, call the ``unregister`` method, |
261 | 260 | passing the model class. |