diff -r b758351d191f -r cc9b7e14412b web/lib/django/contrib/comments/moderation.py --- a/web/lib/django/contrib/comments/moderation.py Wed May 19 17:43:59 2010 +0200 +++ b/web/lib/django/contrib/comments/moderation.py Tue May 25 02:43:45 2010 +0200 @@ -250,12 +250,11 @@ models registered for comment moderation, and their associated moderation classes, and apply moderation to all incoming comments. - To register a model, obtain an instance of ``CommentModerator`` - (this module exports one as ``moderator``), and call its - ``register`` method, passing the model class and a moderation - class (which should be a subclass of ``CommentModerator``). Note - that both of these should be the actual classes, not instances of - the classes. + To register a model, obtain an instance of ``Moderator`` (this + module exports one as ``moderator``), and call its ``register`` + method, passing the model class and a moderation class (which + should be a subclass of ``CommentModerator``). Note that both of + these should be the actual classes, not instances of the classes. To cease moderation for a model, call the ``unregister`` method, passing the model class.