From bed1418034ec20a308ac8df94ebaf97fd489ea30 Mon Sep 17 00:00:00 2001 From: James Bennett Date: Fri, 15 May 2009 02:57:53 +0000 Subject: [PATCH] Add a proper cross-reference to the mention of HttpRequest in the comment moderation docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10786 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/contrib/comments/moderation.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/contrib/comments/moderation.txt b/docs/ref/contrib/comments/moderation.txt index 78725be0bd..2c4072ba5b 100644 --- a/docs/ref/contrib/comments/moderation.txt +++ b/docs/ref/contrib/comments/moderation.txt @@ -145,7 +145,7 @@ determine how moderation will take place; each method will be called by the moderation system and passed two arguments: ``comment``, which is the new comment being posted, ``content_object``, which is the object the comment will be attached to, and ``request``, which is the -``HttpRequest`` in which the comment is being submitted: +:class:`~django.http.HttpRequest` in which the comment is being submitted: .. method:: CommentModerator.allow(comment, content_object, request)