diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-09-03 18:44:19 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-09-03 18:44:19 +0000 |
| commit | e1f1bda3c7e5e97ee4b703a06c9c764a80c3ddd8 (patch) | |
| tree | c9fae1961ad6ae38db5ef2743045470bcf9ed94b | |
| parent | d88688014f7fca77fb18530d36dd77e10b4bcb82 (diff) | |
Fixed #8614 -- Typo fix.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8933 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/comments/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/comments/models.py b/django/contrib/comments/models.py index 3b785d6598..c0613dc526 100644 --- a/django/contrib/comments/models.py +++ b/django/contrib/comments/models.py @@ -44,7 +44,7 @@ class Comment(BaseCommentAbstractModel): """ # Who posted this comment? If ``user`` is set then it was an authenticated - # user; otherwise at least person_name should have been set and the comment + # user; otherwise at least user_name should have been set and the comment # was posted by a non-authenticated user. user = models.ForeignKey(User, blank=True, null=True, related_name="%(class)s_comments") user_name = models.CharField(_("user's name"), max_length=50, blank=True) |
