about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbit-aloo <sshourya17@gmail.com>2025-02-07 20:32:16 +0530
committerbit-aloo <sshourya17@gmail.com>2025-02-07 20:32:16 +0530
commit08362f028375c4315d04b2ce4837153bcbf1f81a (patch)
treea4569acce592b956156838691af5baf60a21006a
parent5ff18d0eaefd1bd9ab8ec33dab2404a44e7631ed (diff)
downloadrust-08362f028375c4315d04b2ce4837153bcbf1f81a.tar.gz
rust-08362f028375c4315d04b2ce4837153bcbf1f81a.zip
add module level doc for bootstrap:util:exec
-rw-r--r--src/bootstrap/src/utils/exec.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bootstrap/src/utils/exec.rs b/src/bootstrap/src/utils/exec.rs
index 60216395c2f..1902dcd3962 100644
--- a/src/bootstrap/src/utils/exec.rs
+++ b/src/bootstrap/src/utils/exec.rs
@@ -1,3 +1,8 @@
+//! Command Execution Module
+//!
+//! This module provides a structured way to execute and manage commands efficiently,
+//! ensuring controlled failure handling and output management.
+
 use std::ffi::OsStr;
 use std::fmt::{Debug, Formatter};
 use std::path::Path;