Django

Code

Changeset 9373

Show
Ignore:
Timestamp:
11/09/08 13:01:34 (2 months ago)
Author:
kmtracey
Message:

Fixed #9556 - typos in syndication docs. Thanks sedden.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/ref/contrib/syndication.txt

    r9312 r9373  
    977977 
    978978    class iTunesFeed(Rss201rev2Feed): 
    979         def root_attibutes(self): 
    980             attrs = super(iTunesFeed, self).root_attibutes() 
     979        def root_attributes(self): 
     980            attrs = super(iTunesFeed, self).root_attributes() 
    981981            attrs['xmlns:itunes'] = 'http://www.itunes.com/dtds/podcast-1.0.dtd' 
    982982            return attrs