about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2025-02-08 03:58:49 +0100
committerGitHub <noreply@github.com>2025-02-08 03:58:49 +0100
commit68ef1299396e6c63fde54e04295f4ad7ba048f69 (patch)
treef86d56af18655624a48ffd6671044262172db0a8
parentc9771e95904ea018379f2d9cb6997819be2cd5fa (diff)
parent08362f028375c4315d04b2ce4837153bcbf1f81a (diff)
downloadrust-68ef1299396e6c63fde54e04295f4ad7ba048f69.tar.gz
rust-68ef1299396e6c63fde54e04295f4ad7ba048f69.zip
Rollup merge of #136692 - Shourya742:2025-02-07-add-rust-docs-for-bootstrap-utils-exec, r=onur-ozkan
add module level doc for bootstrap:utils:exec

This PR adds module level doc for bootstrap utils/exec module
-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;