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 README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ The client object now has a bunch of different methods that you can use.
>>> client.objectify('http://vimeo.com/18150336')
<embedly.models.Url at 0x10223d950>

The above functions all take the same arguements, a URL or a list of URLs and
The above functions all take the same arguments, a URL or a list of URLs and
keyword arguments that correspond to Embedly's `query arguments
<http://embed.ly/docs/endpoints/arguments>`_. Here is an example::

Expand Down
2 changes: 1 addition & 1 deletion embedly/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Url(IterableUserDict, object):
"""
A dictionary with two additional attributes for the method and url.
UserDict provides a dictionary interface along with the regular
dictionary accsesible via the `data` attribute.
dictionary accessible via the `data` attribute.

"""
def __init__(self, data=None, method=None, original_url=None, **kwargs):
Expand Down