From a24d80f193b0a1e0da1cdcb1d183bd3763f69cad Mon Sep 17 00:00:00 2001 From: Karen Tracey Date: Sun, 9 Nov 2008 19:02:54 +0000 Subject: [PATCH] [1.0.X] Fixed #9556 - typos in syndication docs. Thanks sedden. [9373] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9374 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/contrib/syndication.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/contrib/syndication.txt b/docs/ref/contrib/syndication.txt index a4690da4c5..a75f736e6b 100644 --- a/docs/ref/contrib/syndication.txt +++ b/docs/ref/contrib/syndication.txt @@ -976,8 +976,8 @@ attributes. Thus, you can subclass the appropriate feed generator class 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