summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-11-30 05:27:49 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-11-30 05:27:49 +0000
commit7ea174ef146157c363b667f18eee5dc920404b23 (patch)
tree29ff12cf105a0421f1742de6a3d66eb41e1cfe20 /docs
parent85acb388ee4d5ce04ac305d1589c0ab84a99015c (diff)
Edited docs/syndication_feeds.txt changes from [6570]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6773 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/syndication_feeds.txt6
1 files 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.