Author: kmtracey Date: 2008-11-09 13:01:34 -0600 (Sun, 09 Nov 2008) New Revision: 9373
Modified: django/trunk/docs/ref/contrib/syndication.txt Log: Fixed #9556 - typos in syndication docs. Thanks sedden. Modified: django/trunk/docs/ref/contrib/syndication.txt =================================================================== --- django/trunk/docs/ref/contrib/syndication.txt 2008-11-09 18:54:12 UTC (rev 9372) +++ django/trunk/docs/ref/contrib/syndication.txt 2008-11-09 19:01:34 UTC (rev 9373) @@ -976,8 +976,8 @@ For example, you might start implementing an iTunes RSS feed generator like so:: class iTunesFeed(Rss201rev2Feed): - def root_attibutes(self): - attrs = super(iTunesFeed, self).root_attibutes() + def root_attributes(self): + attrs = super(iTunesFeed, self).root_attributes() attrs['xmlns:itunes'] = 'http://www.itunes.com/dtds/podcast-1.0.dtd' return attrs --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-updates@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---