Skip to content

Commit 4fb7b22

Browse files
author
Andres Olivares
committed
Few changes to doc comments. Added tracking issue number.
1 parent fe62f6f commit 4fb7b22

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

std/src/os/windows/process.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,12 @@ pub trait CommandExt: Sealed {
181181
#[stable(feature = "windows_process_extensions", since = "1.16.0")]
182182
fn creation_flags(&mut self, flags: u32) -> &mut process::Command;
183183

184-
/// Sets the field [wShowWindow][1] of [STARTUPINFO][2] that is passed to `CreateProcess`.
184+
/// Sets the field `wShowWindow` of [STARTUPINFO][1] that is passed to `CreateProcess`.
185+
/// Allowed values are the ones listed in
186+
/// https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-showwindow
185187
///
186-
/// [1]: https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-showwindow
187-
/// [2]: https://learn.microsoft.com/es-es/windows/win32/api/processthreadsapi/ns-processthreadsapi-startupinfow
188-
#[unstable(feature = "windows_process_extensions_show_window", issue = "none")]
188+
/// [1]: https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/ns-processthreadsapi-startupinfow
189+
#[unstable(feature = "windows_process_extensions_show_window", issue = "127544")]
189190
fn show_window(&mut self, cmd_show: u16) -> &mut process::Command;
190191

191192
/// Forces all arguments to be wrapped in quote (`"`) characters.

0 commit comments

Comments
 (0)