From e99c0d6a00284e1f81a44571e0b7ecf43252b1da Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Sat, 4 Feb 2006 13:34:06 +0000 Subject: [PATCH] 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 --- django/db/models/fields/related.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/models/fields/related.py b/django/db/models/fields/related.py index 1ca6d0e92d..e111a2236f 100644 --- a/django/db/models/fields/related.py +++ b/django/db/models/fields/related.py @@ -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