diff options
| author | Karen Tracey <kmtracey@gmail.com> | 2008-11-09 19:01:34 +0000 |
|---|---|---|
| committer | Karen Tracey <kmtracey@gmail.com> | 2008-11-09 19:01:34 +0000 |
| commit | c672e44ea9132d5b89f2156cfb01c4226c298943 (patch) | |
| tree | 88573572a947a5f5836fa73c49f750f73881dbf7 /docs | |
| parent | c367e2869eaa28598aab7aa7ea2e76b596fe09b2 (diff) | |
Fixed #9556 - typos in syndication docs. Thanks sedden.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9373 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/syndication.txt | 4 |
1 files 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 |
