Merge pull request #280 from cakebaker/clippy_fix_warnings_from_rust_1_86

clippy: fix warnings from `doc_overindented_list_items` lint
This commit is contained in:
Sylvestre Ledru
2025-04-04 20:34:10 +02:00
committed by GitHub

View File

@@ -1194,9 +1194,9 @@ impl TestScenario {
/// A `UCommand` is a builder wrapping an individual Command that provides several additional features: /// A `UCommand` is a builder wrapping an individual Command that provides several additional features:
/// 1. it has convenience functions that are more ergonomic to use for piping in stdin, spawning the command /// 1. it has convenience functions that are more ergonomic to use for piping in stdin, spawning the command
/// and asserting on the results. /// and asserting on the results.
/// 2. it tracks arguments provided so that in test cases which may provide variations of an arg in loops /// 2. it tracks arguments provided so that in test cases which may provide variations of an arg in loops
/// the test failure can display the exact call which preceded an assertion failure. /// the test failure can display the exact call which preceded an assertion failure.
/// 3. it provides convenience construction methods to set the Command uutils utility and temporary directory. /// 3. it provides convenience construction methods to set the Command uutils utility and temporary directory.
/// ///
/// Per default `UCommand` runs a command given as an argument in a shell, platform independently. /// Per default `UCommand` runs a command given as an argument in a shell, platform independently.