We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a44315 commit db93677Copy full SHA for db93677
src/libstd/process.rs
@@ -253,6 +253,14 @@ impl Command {
253
/// Builder methods are provided to change these defaults and
254
/// otherwise configure the process.
255
///
256
+ /// If `program` is not an absolute path, the `PATH` will be searched in
257
+ /// an OS-defined way.
258
+ ///
259
+ /// The search path to be used may be controlled by setting the
260
+ /// `PATH` environment variable on the Command,
261
+ /// but this has some implementation limitations on Windows
262
+ /// (see https://github.com/rust-lang/rust/issues/37519).
263
264
/// # Examples
265
266
/// Basic usage:
0 commit comments