Skip to content

Commit 8501dcb

Browse files
authored
remove unusual indentation
This also fixes markdown rendering
1 parent 01e44b1 commit 8501dcb

File tree

1 file changed

+5
-5
lines changed
  • src/bootstrap/src/core/builder

1 file changed

+5
-5
lines changed

Diff for: src/bootstrap/src/core/builder/mod.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ pub trait Step: 'static + Clone + Debug + PartialEq + Eq + Hash {
101101
/// Primary function to implement `Step` logic.
102102
///
103103
/// This function can be triggered in two ways:
104-
/// 1. Directly from [`Builder::execute_cli`].
105-
/// 2. Indirectly by being called from other `Step`s using [`Builder::ensure`].
104+
/// 1. Directly from [`Builder::execute_cli`].
105+
/// 2. Indirectly by being called from other `Step`s using [`Builder::ensure`].
106106
///
107107
/// When called with [`Builder::execute_cli`] (as done by `Build::build`), this function is executed twice:
108-
/// - First in "dry-run" mode to validate certain things (like cyclic Step invocations,
109-
/// directory creation, etc) super quickly.
110-
/// - Then it's called again to run the actual, very expensive process.
108+
/// - First in "dry-run" mode to validate certain things (like cyclic Step invocations,
109+
/// directory creation, etc) super quickly.
110+
/// - Then it's called again to run the actual, very expensive process.
111111
///
112112
/// When triggered indirectly from other `Step`s, it may still run twice (as dry-run and real mode)
113113
/// depending on the `Step::run` implementation of the caller.

0 commit comments

Comments
 (0)