1
Fork 0

Removed RustFMT changes

This commit is contained in:
Joshua Horwitz 2017-03-07 23:04:59 -05:00
parent 3087a1f39e
commit e2b4824b88

View file

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