about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndres Olivares <andyolivares@gmail.com>2024-07-09 21:46:20 -0400
committerAndres Olivares <andres.olivares@ncratleos.com>2024-07-09 22:09:13 -0400
commitb8b6d14de92986e420e782d9a587960f6792c7c2 (patch)
tree8775f9d16dc3c542f60b999562a85b64636fd7c2
parente82ad2e62224c66ef0b6c9e11a79e73cf645f1b4 (diff)
downloadrust-b8b6d14de92986e420e782d9a587960f6792c7c2.tar.gz
rust-b8b6d14de92986e420e782d9a587960f6792c7c2.zip
Fixed doc links
-rw-r--r--library/std/src/os/windows/process.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/os/windows/process.rs b/library/std/src/os/windows/process.rs
index a087fb48830..05ffb8925a1 100644
--- a/library/std/src/os/windows/process.rs
+++ b/library/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
+    /// <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")]
     fn show_window(&mut self, cmd_show: u16) -> &mut process::Command;