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 8, 2017
1 parent ee60afa commit c51a39d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/libstd/process.rs
Original file line number Diff line number Diff line change
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
///

This comment has been minimized.

Copy link
@jdhorwitz

jdhorwitz Mar 15, 2017

Author Contributor

@pooyapeyravi What can I help you with?

/// # Examples
///
/// Basic usage:
Expand Down

0 comments on commit c51a39d

Please sign in to comment.