Merge pull request #9097 from cakebaker/rustdoc_fix_link

rustdoc: fix broken intra doc links
This commit is contained in:
Daniel Hofstetter
2025-11-02 14:03:23 +01:00
committed by GitHub
parent a73a77f7ff
commit 4f45042cb5
5 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -1672,7 +1672,7 @@ impl UCommand {
/// Set if process should be run in a simulated terminal
///
/// This is useful to test behavior that is only active if e.g. [`stdout.is_terminal()`] is [`true`].
/// This is useful to test behavior that is only active if e.g. `stdout.is_terminal()` is `true`.
/// This function uses default terminal size and attaches stdin, stdout and stderr to that terminal.
/// For more control over the terminal simulation, use `terminal_sim_stdio`
/// (unix: pty, windows: `ConPTY`[not yet supported])
@@ -1693,7 +1693,7 @@ impl UCommand {
/// Allows to simulate a terminal use-case with specific properties.
///
/// This is useful to test behavior that is only active if e.g. [`stdout.is_terminal()`] is [`true`].
/// This is useful to test behavior that is only active if e.g. `stdout.is_terminal()` is `true`.
/// This function allows to set a specific size and to attach the terminal to only parts of the in/out.
#[cfg(unix)]
pub fn terminal_sim_stdio(&mut self, config: TerminalSimulation) -> &mut Self {