Removed RustFMT changes

This commit is contained in:
Joshua Horwitz
2017-03-07 23:04:59 -05:00
parent 3087a1f39e
commit e2b4824b88
+21
View File
@@ -343,6 +343,23 @@ pub fn new<S: AsRef<OsStr>>(program: S) -> 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 @@ pub fn arg<S: AsRef<OsStr>>(&mut self, arg: S) -> &mut Command {
/// Add multiple arguments to pass to the program.
///
/// To pass a single argument see [`arg`].
///
/// [`arg`]: #method.arg
///
/// # Examples
///
/// Basic usage: