magic-removal: Fixed error in a comment in ReverseManyRelatedObjectsDescriptor

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2266 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Luke Plant 2006-02-04 13:34:06 +00:00
parent 635dcd9c2f
commit e99c0d6a00
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ class ReverseManyRelatedObjectsDescriptor(object):
# multiple "remote" values and have a ManyToManyField defined in their
# model (rather than having another model pointed *at* them).
# In the example "poll.sites", the sites attribute is a
# ManyRelatedObjectsDescriptor instance.
# ReverseManyRelatedObjectsDescriptor instance.
def __init__(self, m2m_field):
self.field = m2m_field
self.rel_model = m2m_field.rel.to