Fix formatting nit in process.rs

This commit is contained in:
Rafael Bachmann 2025-03-28 13:22:09 +01:00 committed by GitHub
parent e77a8f439c
commit 0f418520c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1836,7 +1836,7 @@ impl crate::sealed::Sealed for ExitStatusError {}
/// # if cfg!(unix) {
/// use std::process::{Command, ExitStatusError};
///
/// fn run(cmd: &str) -> Result<(),ExitStatusError> {
/// fn run(cmd: &str) -> Result<(), ExitStatusError> {
/// Command::new(cmd).status().unwrap().exit_ok()?;
/// Ok(())
/// }