Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #8615 - davepacheco:sigquit-typo, r=ehuss
Fix typo in SIGQUIT description This PR fixes a small typo in the SIGQUIT description. (edit: removed my notes about automated tests because the PR bot has a more complete summary.) In terms of manual testing: I had a test that raised `SIGQUIT` using the "coredump" crate. Previously, it emitted: ``` error: test failed, to rerun pass '--test the_test' Caused by: process didn't exit successfully: `/Users/dap/oxide/experiments/rust-coredump/target/debug/deps/the_test-a8a068307be90649 --nocapture` (signal: 3, SIGQUIT: terminal quite signal) ``` Now, it emits: ``` error: test failed, to rerun pass '--test the_test' Caused by: process didn't exit successfully: `/Users/dap/oxide/experiments/rust-coredump/target/debug/deps/the_test-20c8e90133861ece --nocapture` (signal: 3, SIGQUIT: terminal quit signal) ``` which looks correct.
- Loading branch information