summary refs log tree commit diff
path: root/library/std/src/os/windows
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2022-04-04 10:15:28 -0700
committerDavid Tolnay <dtolnay@gmail.com>2022-04-04 10:15:28 -0700
commit66e05c2f7cc3425b7f3bd2e8e46ddbbd003e675d (patch)
tree6bb1bfd626b76c764103313742278dbd2fa6b1bc /library/std/src/os/windows
parentc821b716322238bcb80fb9ef81e75ce7a00bdf9c (diff)
downloadrust-66e05c2f7cc3425b7f3bd2e8e46ddbbd003e675d.tar.gz
rust-66e05c2f7cc3425b7f3bd2e8e46ddbbd003e675d.zip
Bump windows CommandExt::raw_arg to 1.62
Diffstat (limited to 'library/std/src/os/windows')
-rw-r--r--library/std/src/os/windows/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/windows/process.rs b/library/std/src/os/windows/process.rs
index dd61a4f95d6..e1896309914 100644
--- a/library/std/src/os/windows/process.rs
+++ b/library/std/src/os/windows/process.rs
@@ -159,7 +159,7 @@ pub trait CommandExt: Sealed {
     ///
     /// This is useful for passing arguments to `cmd.exe /c`, which doesn't follow
     /// `CommandLineToArgvW` escaping rules.
-    #[stable(feature = "windows_process_extensions_raw_arg", since = "1.61.0")]
+    #[stable(feature = "windows_process_extensions_raw_arg", since = "1.62.0")]
     fn raw_arg<S: AsRef<OsStr>>(&mut self, text_to_append_as_is: S) -> &mut process::Command;
 }