diff options
author | Tim Gates <tim.gates@iress.com> | 2022-07-24 07:55:18 +1000 |
---|---|---|
committer | Tim Gates <tim.gates@iress.com> | 2022-07-24 07:55:18 +1000 |
commit | 6cac8237ccfe3f91f5a4f40300c085a83eb18adc (patch) | |
tree | 3e99f96dd12dbfec87379a3e3edd9d47cb727551 | |
parent | 84dfbcf3dc7bcfd56a8bd8989ef3655ca31ac296 (diff) | |
download | pelican-6cac8237ccfe3f91f5a4f40300c085a83eb18adc.tar.gz |
docs: Fix a few typos
There are small typos in:
- docs/tips.rst
- pelican/tests/__init__.py
Fixes:
- Should read `module` rather than `modulole`.
- Should read `console` rather than `cosole`.
Signed-off-by: Tim Gates <tim.gates@iress.com>
-rw-r--r-- | docs/tips.rst | 2 | ||||
-rw-r--r-- | pelican/tests/__init__.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/tips.rst b/docs/tips.rst index 78013227..8b9dda15 100644 --- a/docs/tips.rst +++ b/docs/tips.rst @@ -30,7 +30,7 @@ For Apache:: ErrorDocument 404 /404.html For Amazon S3, first navigate to the ``Static Site Hosting`` menu in the bucket -settings on your AWS cosole. From there:: +settings on your AWS console. From there:: Error Document: 404.html diff --git a/pelican/tests/__init__.py b/pelican/tests/__init__.py index 4605a02b..564e417c 100644 --- a/pelican/tests/__init__.py +++ b/pelican/tests/__init__.py @@ -3,7 +3,7 @@ import warnings from pelican.log import log_warnings -# redirect warnings modulole to use logging instead +# redirect warnings module to use logging instead log_warnings() # setup warnings to log DeprecationWarning's and error on |