Samyak2 / toipe

yet another typing test, but crab flavoured
MIT License
596 stars 31 forks source link

Words starting with z are most likely ignored #44

Closed Samyak2 closed 2 years ago

Samyak2 commented 2 years ago

Clippy found a bug in: https://github.com/Samyak2/toipe/blob/3cb7e31bd5dc61f0e89c244d2f6a7a3c5580856b/src/textgen.rs#L78

The range should have been inclusive.

https://github.com/Samyak2/toipe/runs/8056437431?check_suite_focus=true#step:6:8

nthnd commented 2 years ago

couldn't you just change the .. to a ..=?

Samyak2 commented 2 years ago

Yes, that's the solution. I opened this issue so that I wouldn't forget it. PRs are always welcome though :)