giampaolo / pyftpdlib

Extremely fast and scalable Python FTP server library
MIT License
1.65k stars 267 forks source link

Fix spelling #539

Closed OrangeTux closed 3 years ago

OrangeTux commented 4 years ago

Thanks for this great project.

While digging through the code I found a few spelling errors. Here is a PR that fixes a few of them. I hope you don't mind.

lurch commented 4 years ago

I'm not sure if unicode and utf8 really needed "correcting", but the majority of the spelling corrections LGTM.

OrangeTux commented 4 years ago

I understand. I will revert those changes.

coveralls commented 4 years ago

Coverage Status

Coverage remained the same at 0.0% when pulling 403a79c0994607a2dad48671fd3d169de4995b2c on OrangeTux:spell-check into bdf50a23d61506fa87708bc06a41b46cfec7bbdd on giampaolo:master.

giampaolo commented 3 years ago

Thank you.

giampaolo commented 3 years ago

Out of curiosity: did you use some tool to do this? If so, I would like to integrate it in my projects somehow.

OrangeTux commented 3 years ago

I use spell check function of neovim. You can read about it here. It's nothing sophisticated. I just jumped through the list of misspellings using ]s and [s. Every misspelling I fixed manually.

lurch commented 3 years ago

@giampaolo I've used https://github.com/codespell-project/codespell on other projects.

giampaolo commented 3 years ago

Thanks Andrew.