Django

Code

Changeset 5139

Show
Ignore:
Timestamp:
05/02/07 15:31:15 (1 year ago)
Author:
adrian
Message:

Fixed #4068 -- Fixed incorrect docstring in docs/syndication_feeds.txt. Thanks, Jeff Hilyard and Vinay Sajip

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/syndication_feeds.txt

    r5064 r5139  
    647647            """ 
    648648            Takes an item, as returned by items(), and returns the item's 
    649             enclosure mime type. 
     649            enclosure MIME type. 
    650650            """ 
    651651 
    652652        def item_enclosure_mime_type(self): 
    653653            """ 
    654             Returns the enclosure length, in bytes, for every item in the feed. 
    655             """ 
    656  
    657         item_enclosure_mime_type = "audio/mpeg" # Hard-coded enclosure mime-type. 
     654            Returns the enclosure MIME type for every item in the feed. 
     655            """ 
     656 
     657        item_enclosure_mime_type = "audio/mpeg" # Hard-coded enclosure MIME type. 
    658658 
    659659        # ITEM PUBDATE -- It's optional to use one of these three. This is a