summaryrefslogtreecommitdiff
path: root/docs/syndication_feeds.txt
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2007-12-01 20:08:45 +0000
committerJames Bennett <ubernostrum@gmail.com>2007-12-01 20:08:45 +0000
commitf3d5372340a2baea9f29bcec93d2163fff3461a0 (patch)
tree3595675a0034e6e6ec529a3ddc8a0209d8fd9740 /docs/syndication_feeds.txt
parent1087dc31fb1ef5b921d12619b9e7aba209b1643f (diff)
Fixed #5860: Documented the correct order in which the syndication framework tries methods for generating item links.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6806 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/syndication_feeds.txt')
-rw-r--r--docs/syndication_feeds.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/syndication_feeds.txt b/docs/syndication_feeds.txt
index 351cead39c..6017ab6487 100644
--- a/docs/syndication_feeds.txt
+++ b/docs/syndication_feeds.txt
@@ -603,8 +603,9 @@ This example illustrates all possible attributes and methods for a ``Feed`` clas
# ITEM LINK -- One of these three is required. The framework looks for
# them in this order.
- # First, the framework tries the get_absolute_url() method on each item
- # returned by items(). Failing that, it tries these two methods:
+ # First, the framework tries the two methods below, in
+ # order. Failing that, it falls back to the get_absolute_url()
+ # method on each item returned by items().
def item_link(self, item):
"""