summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2009-05-15 02:57:53 +0000
committerJames Bennett <ubernostrum@gmail.com>2009-05-15 02:57:53 +0000
commitbed1418034ec20a308ac8df94ebaf97fd489ea30 (patch)
treee4bcbe030fd9c0a20a05afde6d4898813a72d65f
parentbcb0d124b409c68ede62f82421855a29ea5b8a39 (diff)
downloaddjango-bed1418034ec20a308ac8df94ebaf97fd489ea30.tar.gz
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
-rw-r--r--docs/ref/contrib/comments/moderation.txt2
1 files changed, 1 insertions, 1 deletions
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)