Auto merge of #38018 - sourcefrog:doc, r=alexcrichton

Document that Process::command will search the PATH
This commit is contained in:
bors 2016-12-01 11:35:19 +00:00
commit 149e76f12c
1 changed files with 8 additions and 0 deletions

View File

@ -253,6 +253,14 @@ impl Command {
/// Builder methods are provided to change these defaults and
/// otherwise configure the process.
///
/// If `program` is not an absolute path, the `PATH` will be searched in
/// an OS-defined way.
///
/// The search path to be used may be controlled by setting the
/// `PATH` environment variable on the Command,
/// but this has some implementation limitations on Windows
/// (see https://github.com/rust-lang/rust/issues/37519).
///
/// # Examples
///
/// Basic usage: