diff --git a/django/contrib/comments/models.py b/django/contrib/comments/models.py
index 40243d0..9cb2293 100644
a
|
b
|
class Comment(BaseCommentAbstractModel):
|
43 | 43 | """ |
44 | 44 | |
45 | 45 | # Who posted this comment? If ``user`` is set then it was an authenticated |
46 | | # user; otherwise at least person_name should have been set and the comment |
| 46 | # user; otherwise at least user_name should have been set and the comment |
47 | 47 | # was posted by a non-authenticated user. |
48 | 48 | user = models.ForeignKey(User, blank=True, null=True, related_name="%(class)s_comments") |
49 | 49 | user_name = models.CharField(_("user's name"), max_length=50, blank=True) |