From 7bd946258e36718a78fed2e5fd8dca35b4dfc9ad Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 5 Sep 2006 00:20:53 +0000 Subject: [PATCH] Fixed #2646 -- Removed unneeded comma in docs/syndication_feeds.txt. Thanks, lec9@leicester.ac.uk git-svn-id: http://code.djangoproject.com/svn/django/trunk@3721 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/syndication_feeds.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/syndication_feeds.txt b/docs/syndication_feeds.txt index b00af200a0..225b67eb02 100644 --- a/docs/syndication_feeds.txt +++ b/docs/syndication_feeds.txt @@ -707,7 +707,7 @@ This example creates an Atom 1.0 feed and prints it to standard output:: ... title=u"My Weblog", ... link=u"http://www.example.com/", ... description=u"In which I write about what I ate today.", - ... language=u"en"), + ... language=u"en") >>> f.add_item(title=u"Hot dog today", ... link=u"http://www.example.com/entries/1/", ... description=u"

Today I had a Vienna Beef hot dog. It was pink, plump and perfect.

")