summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/sys/ptrace.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/ptrace.rs b/src/sys/ptrace.rs
index ae371b50..be09974d 100644
--- a/src/sys/ptrace.rs
+++ b/src/sys/ptrace.rs
@@ -284,7 +284,7 @@ pub fn cont<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()> {
/// `ptrace(PTRACE_SINGLESTEP, ...)`
///
/// Advances the execution of the process with PID `pid` by a single step optionally delivering a
-/// single specified by `sig`.
+/// signal specified by `sig`.
///
/// # Example
/// ```rust