Rollup merge of #34185 - tshepang:shorten-paragraph, r=steveklabnik

doc: intro should be 1 sentence

Also, do not repeat name of type
This commit is contained in:
Seo Sanghyeon 2016-06-10 21:16:46 +09:00 committed by GitHub
commit 107d423f1a

View File

@ -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: