about summary refs log tree commit diff
path: root/src/libstd/process.rs
diff options
context:
space:
mode:
authorSeo Sanghyeon <sanxiyn@gmail.com>2016-06-10 21:16:46 +0900
committerGitHub <noreply@github.com>2016-06-10 21:16:46 +0900
commit107d423f1ab9a110fdf2253e7d0074f0ab5bf868 (patch)
tree66b3bcb1be157456f70eb51e8b451f7092ce08f6 /src/libstd/process.rs
parent633b2597cc88f42b61cda04684794a4352d83ace (diff)
parent3dfc8c186919140767671c9d56e751c89710e355 (diff)
downloadrust-107d423f1ab9a110fdf2253e7d0074f0ab5bf868.tar.gz
rust-107d423f1ab9a110fdf2253e7d0074f0ab5bf868.zip
Rollup merge of #34185 - tshepang:shorten-paragraph, r=steveklabnik
doc: intro should be 1 sentence

Also, do not repeat name of type
Diffstat (limited to 'src/libstd/process.rs')
-rw-r--r--src/libstd/process.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs
index 3ce9bcc79f2..96ddda32ae4 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -182,8 +182,10 @@ impl FromInner<AnonPipe> for ChildStderr {
     }
 }
 
-/// The `Command` type acts as a process builder, providing fine-grained control
-/// over how a new process should be spawned. A default configuration can be
+/// A process builder, providing fine-grained control
+/// over how a new process should be spawned.
+///
+/// A default configuration can be
 /// generated using `Command::new(program)`, where `program` gives a path to the
 /// program to be executed. Additional builder methods allow the configuration
 /// to be changed (for example, by adding arguments) prior to spawning: