From e0f0532305a132b1c13b87d57f3b26c1d5f2be16 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 1 Dec 2005 05:28:05 +0000 Subject: [PATCH] Small fix to a comment in django.core.meta.init git-svn-id: http://code.djangoproject.com/svn/django/trunk@1512 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/meta/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/django/core/meta/__init__.py b/django/core/meta/__init__.py index 0af7fe51f1a..de0a0abb6a1 100644 --- a/django/core/meta/__init__.py +++ b/django/core/meta/__init__.py @@ -264,9 +264,9 @@ class RelatedObject(object): def get_method_name_part(self): # This method encapsulates the logic that decides what name to give a - # method that retrieves related many-to-one objects. Usually it just - # uses the lower-cased object_name, but if the related object is in - # another app, its app_label is appended. + # method that retrieves related many-to-one or many-to-many objects. + # Usually it just uses the lower-cased object_name, but if the related + # object is in another app, the related object's app_label is appended. # # Examples: #