diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2025-02-08 03:58:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-08 03:58:49 +0100 |
| commit | 68ef1299396e6c63fde54e04295f4ad7ba048f69 (patch) | |
| tree | f86d56af18655624a48ffd6671044262172db0a8 | |
| parent | c9771e95904ea018379f2d9cb6997819be2cd5fa (diff) | |
| parent | 08362f028375c4315d04b2ce4837153bcbf1f81a (diff) | |
| download | rust-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.rs | 5 |
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; |
