diff --git a/doc/downloaders.rst b/doc/downloaders.rst index 349fb907..047bf88a 100644 --- a/doc/downloaders.rst +++ b/doc/downloaders.rst @@ -50,7 +50,7 @@ Creating your own downloaders If your use case is not covered by our downloaders, you can implement your own. :meth:`pooch.Pooch.fetch` and :func:`pooch.retrieve` will accept any *callable -obejct* that has the signature specified above. As an example, consider the +object* that has the signature specified above. As an example, consider the case in which the login credentials need to be provided to a site that is redirected from the original download URL: diff --git a/doc/processors.rst b/doc/processors.rst index 4f946b90..9b6fd7a4 100644 --- a/doc/processors.rst +++ b/doc/processors.rst @@ -125,7 +125,7 @@ the ``fname, action, pup`` arguments. Example use cases for this would be: size) to a more user friendly format (easy to open and fast to load into memory). * Add missing metadata to data from public servers. You might be using public - data that has known issues (poorly formated entries, missing metadata, etc) + data that has known issues (poorly formatted entries, missing metadata, etc) which can be fixed when the file is downloaded. The main advantage to using a processor for these actions is that they are diff --git a/pooch/hashes.py b/pooch/hashes.py index 9d6a0659..49374a32 100644 --- a/pooch/hashes.py +++ b/pooch/hashes.py @@ -146,7 +146,7 @@ def hash_matches(fname, known_hash, strict=False, source=None): If the *known_hash* is None, will always return True. - Coverts hashes to lowercase before comparison to avoid system specific + Converts hashes to lowercase before comparison to avoid system specific mismatches between hashes in the registry and computed hashes. Parameters