about summary refs log tree commit diff
path: root/src/libstd/io/process.rs
diff options
context:
space:
mode:
authorJoseph Crail <jbcrail@gmail.com>2014-06-08 13:22:49 -0400
committerJoseph Crail <jbcrail@gmail.com>2014-06-08 13:39:42 -0400
commit45e56eccbed3161dd9de547c6c2dcf618114a484 (patch)
tree4eb63b08a1f5beebc194419162b0f5c5dce1c0e5 /src/libstd/io/process.rs
parent17ba0cf4289d6da632aab4cf242ad74dea94fe37 (diff)
downloadrust-45e56eccbed3161dd9de547c6c2dcf618114a484.tar.gz
rust-45e56eccbed3161dd9de547c6c2dcf618114a484.zip
Fix spelling errors in comments.
Diffstat (limited to 'src/libstd/io/process.rs')
-rw-r--r--src/libstd/io/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/process.rs b/src/libstd/io/process.rs
index 059286339a6..3cb2fe1c8f1 100644
--- a/src/libstd/io/process.rs
+++ b/src/libstd/io/process.rs
@@ -873,7 +873,7 @@ mod tests {
     pub fn sleeper() -> Process {
         // There's a `timeout` command on windows, but it doesn't like having
         // its output piped, so instead just ping ourselves a few times with
-        // gaps inbetweeen so we're sure this process is alive for awhile
+        // gaps in between so we're sure this process is alive for awhile
         Command::new("ping").arg("127.0.0.1").arg("-n").arg("1000").spawn().unwrap()
     }