diff options
Diffstat (limited to 'docs/ref/contrib/syndication.txt')
| -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 a268bad8cc..c71cd53a99 100644 --- a/docs/ref/contrib/syndication.txt +++ b/docs/ref/contrib/syndication.txt @@ -13,7 +13,7 @@ To create any syndication feed, all you have to do is write a short Python class. You can create as many feeds as you want. Django also comes with a lower-level feed-generating API. Use this if -you want to generate feeds outside of a Web context, or in some other +you want to generate feeds outside of a web context, or in some other lower-level way. .. _RSS: https://developer.mozilla.org/en-US/docs/Glossary/RSS @@ -1014,7 +1014,7 @@ For example, to create an Atom 1.0 feed and print it to standard output:: >>> from django.utils import feedgenerator >>> from datetime import datetime >>> f = feedgenerator.Atom1Feed( - ... title="My Weblog", + ... title="My Blog", ... link="https://www.example.com/", ... description="In which I write about what I ate today.", ... language="en", |
