From 7ea174ef146157c363b667f18eee5dc920404b23 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 30 Nov 2007 05:27:49 +0000 Subject: [PATCH] Edited docs/syndication_feeds.txt changes from [6570] git-svn-id: http://code.djangoproject.com/svn/django/trunk@6773 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/syndication_feeds.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/syndication_feeds.txt b/docs/syndication_feeds.txt index 2eb188a737..351cead39c 100644 --- a/docs/syndication_feeds.txt +++ b/docs/syndication_feeds.txt @@ -564,15 +564,15 @@ This example illustrates all possible attributes and methods for a ``Feed`` clas def ttl(self, obj): """ Takes the object returned by get_object() and returns the feed's - TTL (Time to live) as a normal Python string. + TTL (Time To Live) as a normal Python string. """ def ttl(self): """ - Returns the feed's ttl as a normal Python string. + Returns the feed's TTL as a normal Python string. """ - ttl = 600 # Hard-coded Time to live. + ttl = 600 # Hard-coded Time To Live. # ITEMS -- One of the following three is required. The framework looks # for them in this order.