From 08ba47d3d173c7fe341d53f48af615cece93bbff Mon Sep 17 00:00:00 2001 From: Hanif Bin Ariffin Date: Sat, 20 Jun 2020 14:33:20 -0400 Subject: [PATCH] Correct mispelling of `cargo`. --- src/cargo/util/job.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo/util/job.rs b/src/cargo/util/job.rs index 51eb550b6..7a9cd1bca 100644 --- a/src/cargo/util/job.rs +++ b/src/cargo/util/job.rs @@ -2,7 +2,7 @@ //! //! Most of the time when you're running cargo you expect Ctrl-C to actually //! terminate the entire tree of processes in play, not just the one at the top -//! (cago). This currently works "by default" on Unix platforms because Ctrl-C +//! (cargo). This currently works "by default" on Unix platforms because Ctrl-C //! actually sends a signal to the *process group* rather than the parent //! process, so everything will get torn down. On Windows, however, this does //! not happen and Ctrl-C just kills cargo.