Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion feedgen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
Create a Feed
-------------

To create a feed simply instanciate the FeedGenerator class and insert some
To create a feed simply instantiate the FeedGenerator class and insert some
data::

>>> from feedgen.feed import FeedGenerator
Expand Down
4 changes: 2 additions & 2 deletions feedgen/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,10 +582,10 @@ def pubdate(self, pubDate=None):
was published. This method is just another name for the published(...)
method.

pubdate(…) is deprected and may be removed in feedgen ≥ 0.8. Use
pubdate(…) is deprecated and may be removed in feedgen ≥ 0.8. Use
pubDate(…) instead.
'''
warnings.warn('pubdate(…) is deprected and may be removed in feedgen '
warnings.warn('pubdate(…) is deprecated and may be removed in feedgen '
'≥ 0.8. Use pubDate(…) instead.')
return self.published(pubDate)

Expand Down
2 changes: 1 addition & 1 deletion feedgen/ext/dc.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def dc_publisher(self, publisher=None, replace=False):
return self._dcelem_publisher

def dc_relation(self, relation=None, replace=False):
'''Get or set the dc:relation which describes a related ressource.
'''Get or set the dc:relation which describes a related resource.

For more information see:
http://dublincore.org/documents/dcmi-terms/#elements-relation
Expand Down
4 changes: 2 additions & 2 deletions readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Installation
**Prebuild packages**

If you are running Fedora Linux, RedHat Enterprise Linux, CentOS or Scientific
Linux you can use the RPM Copr repostiory:
Linux you can use the RPM Copr repository:

http://copr.fedoraproject.org/coprs/lkiesow/python-feedgen/

Expand All @@ -56,7 +56,7 @@ You can also use pip to install the feedgen module. Simply run::
Create a Feed
-------------

To create a feed simply instanciate the FeedGenerator class and insert some
To create a feed simply instantiate the FeedGenerator class and insert some
data::

>>> from feedgen.feed import FeedGenerator
Expand Down