]> git.lizzy.rs Git - rust.git/blobdiff - src/driver.rs
Better explain remotes in the sync process.
[rust.git] / src / driver.rs
index e62ddf2c5f5e97d6789a693efa9ad29b52c6c9e5..2c699998ea90e237cdb708de9eb62507f3d0c60c 100644 (file)
@@ -43,7 +43,7 @@ fn arg_value<'a, T: Deref<Target = str>>(
 
         match arg.next().or_else(|| args.next()) {
             Some(v) if pred(v) => return Some(v),
-            _ => {}
+            _ => {},
         }
     }
     None