Django

Code

Changeset 1512

Show
Ignore:
Timestamp:
11/30/05 23:28:05 (3 years ago)
Author:
adrian
Message:

Small fix to a comment in django.core.meta.init

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/core/meta/__init__.py

    r1511 r1512  
    265265    def get_method_name_part(self): 
    266266        # This method encapsulates the logic that decides what name to give a 
    267         # method that retrieves related many-to-one objects. Usually it just 
    268         # uses the lower-cased object_name, but if the related object is in 
    269         # another app, its app_label is appended. 
     267        # method that retrieves related many-to-one or many-to-many objects. 
     268        # Usually it just uses the lower-cased object_name, but if the related 
     269        # object is in another app, the related object's app_label is appended. 
    270270        # 
    271271        # Examples: