From a00c965beff040be648d68578f55a3b4fda0f9dd Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Thu, 25 Nov 2021 06:42:00 +1100 Subject: [PATCH] docs: Fix a few typos There are small typos in: - README.rst - embedly/models.py Fixes: - Should read `arguments` rather than `arguements`. - Should read `accessible` rather than `accsesible`. --- README.rst | 2 +- embedly/models.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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):