Skip to content

Commit 8aed926

Browse files
committed
add module level doc for execution_context module
1 parent 992fb9e commit 8aed926

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/bootstrap/src/utils/execution_context.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
#![allow(warnings)]
1+
//! Shared execution context for running bootstrap commands.
2+
//!
3+
//! This module provides the [`ExecutionContext`] type, which holds global configuration
4+
//! relevant during the execution of commands in bootstrap. This includes dry-run
5+
//! mode, verbosity level, and behavior on failure.
6+
27
use std::sync::{Arc, Mutex};
38

49
use crate::core::config::DryRun;

0 commit comments

Comments
 (0)