diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-05-02 20:31:15 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-05-02 20:31:15 +0000 |
| commit | d82860ec073b7ecbc8c9c863f972f2dd1bc956e5 (patch) | |
| tree | ce74be0d918a88bf72630f832e0c90c7359e6e34 /docs/syndication_feeds.txt | |
| parent | 4b41fb4ba98f836f5ec4bb5dcf6cfc414eecd7aa (diff) | |
Fixed #4068 -- Fixed incorrect docstring in docs/syndication_feeds.txt. Thanks, Jeff Hilyard and Vinay Sajip
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5139 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/syndication_feeds.txt')
| -rw-r--r-- | docs/syndication_feeds.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/syndication_feeds.txt b/docs/syndication_feeds.txt index c3b02b5d3f..d9d4f53b88 100644 --- a/docs/syndication_feeds.txt +++ b/docs/syndication_feeds.txt @@ -646,15 +646,15 @@ This example illustrates all possible attributes and methods for a ``Feed`` clas def item_enclosure_mime_type(self, item): """ Takes an item, as returned by items(), and returns the item's - enclosure mime type. + enclosure MIME type. """ def item_enclosure_mime_type(self): """ - Returns the enclosure length, in bytes, for every item in the feed. + Returns the enclosure MIME type for every item in the feed. """ - item_enclosure_mime_type = "audio/mpeg" # Hard-coded enclosure mime-type. + item_enclosure_mime_type = "audio/mpeg" # Hard-coded enclosure MIME type. # ITEM PUBDATE -- It's optional to use one of these three. This is a # hook that specifies how to get the pubdate for a given item. |
