File tree 1 file changed +5
-5
lines changed
src/bootstrap/src/core/builder
1 file changed +5
-5
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 {
101
101
/// Primary function to implement `Step` logic.
102
102
///
103
103
/// 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`].
106
106
///
107
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.
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.
111
111
///
112
112
/// When triggered indirectly from other `Step`s, it may still run twice (as dry-run and real mode)
113
113
/// depending on the `Step::run` implementation of the caller.
You can’t perform that action at this time.
0 commit comments