This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xtreak
Recipients docs@python, xtreak
Date 2018-06-14.12:09:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1528978179.87.0.947875510639.issue33859@psf.upfronthosting.co.za>
In-reply-to
Content
I have found some typos in docs folder using aspell. I have fixed them. The changes are as below : 

Doc/library/codecs.rst - cypher - cipher
Doc/library/email.rst - Protcol - Protocol
Doc/library/importlib.rst - abstact - abstract
Doc/library/xmlrpc.client.rst - unmarsalling - unmarshalling
Doc/license.rst - aheared to - adhered to
Doc/using/cmdline.rst - descibed - described
Doc/whatsnew/3.3.rst - accumlated - accumulated
Doc/whatsnew/3.6.rst - Lollilop - Lollipop
Doc/whatsnew/3.7.rst - direcory - directory

Find typos - 

find . -iname '*rst' | xargs -I{} sh -c "aspell --master=en_US --extra-dicts=en_GB --ignore 3 list < {}" | sort | uniq > typos.txt

Ignore case

tr '[:upper:]' '[:lower:]' < typos.txt | sort | uniq | less

This requires manually looking at output of less and then making changes.
History
Date User Action Args
2018-06-14 12:09:39xtreaksetrecipients: + xtreak, docs@python
2018-06-14 12:09:39xtreaksetmessageid: <1528978179.87.0.947875510639.issue33859@psf.upfronthosting.co.za>
2018-06-14 12:09:39xtreaklinkissue33859 messages
2018-06-14 12:09:39xtreakcreate