Skip to content

Commit 584d91f

Browse files
committed
test: fix indentation that fails clippy nightly
See also https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
1 parent c8d10ea commit 584d91f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/common/util.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1522,12 +1522,12 @@ impl UCommand {
15221522
///
15231523
/// These __defaults__ are:
15241524
/// * `bin_path`: Depending on the platform and os, the native shell (unix -> `/bin/sh` etc.).
1525-
/// This default also requires to set the first argument to `-c` on unix (`/C` on windows) if
1526-
/// this argument wasn't specified explicitly by the user.
1525+
/// This default also requires to set the first argument to `-c` on unix (`/C` on windows) if
1526+
/// this argument wasn't specified explicitly by the user.
15271527
/// * `util_name`: `None`. If neither `bin_path` nor `util_name` were given the arguments are
1528-
/// run in a shell (See `bin_path` above).
1528+
/// run in a shell (See `bin_path` above).
15291529
/// * `temp_dir`: If `current_dir` was not set, a new temporary directory will be created in
1530-
/// which this command will be run and `current_dir` will be set to this `temp_dir`.
1530+
/// which this command will be run and `current_dir` will be set to this `temp_dir`.
15311531
/// * `current_dir`: The temporary directory given by `temp_dir`.
15321532
/// * `timeout`: `30 seconds`
15331533
/// * `stdin`: `Stdio::null()`

0 commit comments

Comments
 (0)