Skip to content

Commit

Permalink
README.md: Small correction to CTRL+C signal
Browse files Browse the repository at this point in the history
  • Loading branch information
mcronce committed Sep 5, 2023
1 parent 94fd7f7 commit 24575d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ use tokio_graceful::Shutdown;
#[tokio::main]
async fn main() {
// most users can just use `Shutdown::default()` to initiate
// shutdown upon either Sigterm or CTRL+C (Sigkill).
// shutdown upon either Sigterm or CTRL+C (Sigint).
let signal = tokio::time::sleep(std::time::Duration::from_millis(100));
let shutdown = Shutdown::new(signal);

Expand Down

0 comments on commit 24575d1

Please sign in to comment.