summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxd009642 <danielmckenna93@gmail.com>2018-02-01 17:45:20 +0000
committerxd009642 <danielmckenna93@gmail.com>2018-02-01 17:45:20 +0000
commitd0218ee3958306ef6c6a1790a0dcbb12ad615007 (patch)
tree44852746b6f38aa6799659cc2467073ede5ee2be
parentb218cd5e9ccb63524e9a9a687f48772b826b4907 (diff)
downloadnix-d0218ee3958306ef6c6a1790a0dcbb12ad615007.zip
Corrected typo
-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