about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndres Olivares <andres.olivares@ncratleos.com>2024-07-09 20:48:17 -0400
committerAndres Olivares <andres.olivares@ncratleos.com>2024-07-09 22:09:13 -0400
commite82ad2e62224c66ef0b6c9e11a79e73cf645f1b4 (patch)
treef6f1ad39e96eced45c3cbe61e878adb4e6387d83
parent06d76c3156a8245067473fcc62bc5669f468bf4f (diff)
downloadrust-e82ad2e62224c66ef0b6c9e11a79e73cf645f1b4.tar.gz
rust-e82ad2e62224c66ef0b6c9e11a79e73cf645f1b4.zip
Few changes to doc comments. Added tracking issue number.
-rw-r--r--library/std/src/os/windows/process.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/library/std/src/os/windows/process.rs b/library/std/src/os/windows/process.rs
index b5afdf9868f..a087fb48830 100644
--- a/library/std/src/os/windows/process.rs
+++ b/library/std/src/os/windows/process.rs
@@ -181,11 +181,12 @@ pub trait CommandExt: Sealed {
     #[stable(feature = "windows_process_extensions", since = "1.16.0")]
     fn creation_flags(&mut self, flags: u32) -> &mut process::Command;
 
-    /// Sets the field [wShowWindow][1] of [STARTUPINFO][2] that is passed to `CreateProcess`.
+    /// 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/winuser/nf-winuser-showwindow
-    /// [2]: https://learn.microsoft.com/es-es/windows/win32/api/processthreadsapi/ns-processthreadsapi-startupinfow
-    #[unstable(feature = "windows_process_extensions_show_window", issue = "none")]
+    /// [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;
 
     /// Forces all arguments to be wrapped in quote (`"`) characters.