File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/bootstrap/src/core/builder Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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 ///
107- /// When called with [`Builder::execute_cli`] (as done by `Build::build`), this function 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.
107+ /// 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.
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.
You can’t perform that action at this time.
0 commit comments