rust-cli / book

Documentation on how to use the Rust Programming Language to develop commandline applications
https://rust-cli.github.io/book/index.html
MIT License
816 stars 108 forks source link

fix: Remove typo in `tutorial/testing.md` #214

Closed tmorris42 closed 1 year ago

tmorris42 commented 1 year ago

This fixes a small typo (adds an omitted "like") at the end of the Testing CLI applications by running them section to improve readability of the following sentence:

You can run this test with cargo test, just the tests we wrote above.

which then becomes:

You can run this test with cargo test, just like the tests we wrote above.

epage commented 1 year ago

Thanks!