Skip to content

Commit

Permalink
Removed RustFMT changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhorwitz committed Mar 9, 2017
1 parent 3087a1f commit e2b4824
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/libstd/process.rs
Expand Up @@ -343,6 +343,23 @@ impl Command {

/// Add an argument to pass to the program.
///
/// Only one argument can be passed per use. So instead of:
///
/// ```ignore
/// .arg("-C /path/to/repo")
/// ```
///
/// usage would be:
///
/// ```ignore
/// .arg("-C")
/// .arg("/path/to/repo")
/// ```
///
/// To pass multiple arguments see [`args`].
///
/// [`args`]: #method.args
///
/// # Examples
///
/// Basic usage:
Expand All @@ -364,6 +381,10 @@ impl Command {

/// Add multiple arguments to pass to the program.
///
/// To pass a single argument see [`arg`].
///
/// [`arg`]: #method.arg
///
/// # Examples
///
/// Basic usage:
Expand Down

0 comments on commit e2b4824

Please sign in to comment.