Fixed doc links

This commit is contained in:
Andres Olivares 2024-07-09 21:46:20 -04:00 committed by Andres Olivares
parent e82ad2e622
commit b8b6d14de9
1 changed files with 2 additions and 2 deletions

View File

@ -183,9 +183,9 @@ pub trait CommandExt: Sealed {
/// Sets the field `wShowWindow` of [STARTUPINFO][1] that is passed to `CreateProcess`. /// Sets the field `wShowWindow` of [STARTUPINFO][1] that is passed to `CreateProcess`.
/// Allowed values are the ones listed in /// Allowed values are the ones listed in
/// https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-showwindow /// <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]: <https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/ns-processthreadsapi-startupinfow>
#[unstable(feature = "windows_process_extensions_show_window", issue = "127544")] #[unstable(feature = "windows_process_extensions_show_window", issue = "127544")]
fn show_window(&mut self, cmd_show: u16) -> &mut process::Command; fn show_window(&mut self, cmd_show: u16) -> &mut process::Command;