diff --git a/README.rst b/README.rst index 50416c7..f514ce2 100644 --- a/README.rst +++ b/README.rst @@ -97,7 +97,7 @@ The client object now has a bunch of different methods that you can use. >>> client.objectify('http://vimeo.com/18150336') -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 `_. Here is an example:: diff --git a/embedly/models.py b/embedly/models.py index f97591c..e3f7ad8 100644 --- a/embedly/models.py +++ b/embedly/models.py @@ -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):