pypy / pypy.org

Sources for website at https://www.pypy.org
34 stars 11 forks source link

Fix typos discovered by codespell #132

Closed cclauss closed 2 months ago

cclauss commented 2 months ago

https://pypi.org/project/codespell

% codespell --ignore-words-list=gameboy,ist,mata,nd,openend,theses --quiet=3 --skip="./archive/*,*.html,*.js"

./README.md:19: commited ==> committed
./posts/2022/12/pypy-v7311-release.txt:18: incoporates ==> incorporates
./posts/2024/03/fixing-bug-incremental-gc.md:327: manged ==> managed
./posts/2024/05/vmprof-firefox.md:29: re-use ==> reuse
./posts/2024/07/mining-jit-traces-missing-optimizations-z3.md:25: combinatorical ==> combinatorial
./posts/2024/07/toy-abstract-interpretation.md:34: abtract ==> abstract
./posts/2024/08/toy-knownbits.md:296: knownledge ==> knowledge
./posts/2024/08/toy-knownbits.md:732: abitrary ==> arbitrary
./posts/2024/08/toy-knownbits.md:1496: informations ==> information
./posts/2023/12/pypy-moved-to-git-github.md:105: sucessfully ==> successfully
./posts/2023/12/pypy-moved-to-git-github.md:107: transfered ==> transferred
./posts/2023/12/pypy-moved-to-git-github.md:131: developement ==> development
./posts/2023/12/pypy-v7314-release.txt:17: Hightlights ==> Highlights
./posts/2021/04/some-uses-of-graphviz.txt:103: milage ==> mileage
./posts/2021/05/pypy-v735-release.rst:20: releae ==> release
./posts/2021/10/pypy-v737-release.rst:29: conncurrent ==> concurrent
./pages/download_advanced.rst:94: Platfoms ==> Platforms
./pages/download_advanced.rst:249: tpyical ==> typical
./pages/people.rst:120: developement ==> development
./pages/pypy-sponsors.md:14: encoutered ==> encountered

% codespell --ignore-words-list=gameboy,ist,mata,nd,openend,theses --quiet=3 --skip="./archive/*,*.html,*.js --write-changes"

Removing *.html from --skip would show approx 140 more typos.

mattip commented 2 months ago

Thanks! Skipping the HTML makes sense, no need to fix all the historical documentation.

It might be nice to add this to the Makefile either here or in a future PR. I think we would want something like

Note the Makefile uses a non-standard > prefix so I don't have to change my editor's tab/spaces replacement policy.