From 0d64105175ed462579884f7fecc879b6381da7b9 Mon Sep 17 00:00:00 2001 From: Andres Olivares Date: Tue, 9 Jul 2024 21:46:20 -0400 Subject: [PATCH] Fixed doc links --- std/src/os/windows/process.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/std/src/os/windows/process.rs b/std/src/os/windows/process.rs index a087fb4883014..05ffb8925a1f0 100644 --- a/std/src/os/windows/process.rs +++ b/std/src/os/windows/process.rs @@ -183,9 +183,9 @@ pub trait CommandExt: Sealed { /// Sets the field `wShowWindow` of [STARTUPINFO][1] that is passed to `CreateProcess`. /// Allowed values are the ones listed in - /// https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-showwindow + /// /// - /// [1]: https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/ns-processthreadsapi-startupinfow + /// [1]: #[unstable(feature = "windows_process_extensions_show_window", issue = "127544")] fn show_window(&mut self, cmd_show: u16) -> &mut process::Command;