Author: kmtracey Date: 2008-11-09 13:02:54 -0600 (Sun, 09 Nov 2008) New Revision: 9374
Modified: django/branches/releases/1.0.X/ django/branches/releases/1.0.X/docs/ref/contrib/syndication.txt Log: [1.0.X] Fixed #9556 - typos in syndication docs. Thanks sedden. [9373] from trunk. Property changes on: django/branches/releases/1.0.X ___________________________________________________________________ Name: svnmerge-integrated - /django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9371 + /django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9373 Modified: django/branches/releases/1.0.X/docs/ref/contrib/syndication.txt =================================================================== --- django/branches/releases/1.0.X/docs/ref/contrib/syndication.txt 2008-11-09 19:01:34 UTC (rev 9373) +++ django/branches/releases/1.0.X/docs/ref/contrib/syndication.txt 2008-11-09 19:02:54 UTC (rev 9374) @@ -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 -~----------~----~----~----~------~----~------~--~---