]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/io/process.rs
Register new snapshots
[rust.git] / src / libstd / io / process.rs
index a626d1f3a6c08660b413f289e1d662d32a6350f7..38d8475ddf7a3550ab058f1775f428cb671ac749 100644 (file)
@@ -58,7 +58,7 @@
 /// assert!(child.wait().unwrap().success());
 /// ```
 pub struct Process {
-    handle: Box<RtioProcess:Send>,
+    handle: Box<RtioProcess + Send>,
 
     /// Handle to the child's stdin, if the `stdin` field of this process's
     /// `ProcessConfig` was `CreatePipe`. By default, this handle is `Some`.