From 56c5bcf125f4ca57c4f484a8aa5a369501568d9d Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 31 Jul 2022 12:28:45 +1000 Subject: [PATCH] docs: Fix a few typos There are small typos in: - docs/installation.rst - textract/exceptions.py Fixes: - Should read `suppressed` rather than `supressed`. - Should read `documentation` rather than `documenation`. - Should read `accommodated` rather than `accomodated`. Signed-off-by: Tim Gates --- docs/installation.rst | 4 ++-- textract/exceptions.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 3d3d1e20..5d354536 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -80,10 +80,10 @@ Don't see your operating system installation instructions here? My apologies! Installing system packages is a bit of a drag and its hard to anticipate all of the different environments that need to be -accomodated (wouldn't it be awesome if there were a system-agnostic +accommodated (wouldn't it be awesome if there were a system-agnostic package manager or, better yet, if python could install these system dependencies for you?!?!). If you're operating system doesn't have -documenation about how to install the textract dependencies, please +documentation about how to install the textract dependencies, please :ref:`contribute a pull request ` with: 1. A new section in here with the appropriate details about how to diff --git a/textract/exceptions.py b/textract/exceptions.py index 3453cf71..530591cf 100644 --- a/textract/exceptions.py +++ b/textract/exceptions.py @@ -3,7 +3,7 @@ # traceback from exceptions that inherit from this class are suppressed class CommandLineError(Exception): - """The traceback of all CommandLineError's is supressed when the + """The traceback of all CommandLineError's is suppressed when the errors occur on the command line to provide a useful command line interface. """