about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAron Parker <hl3mukkel@gmail.com>2022-06-10 14:21:49 +0200
committerAron Parker <hl3mukkel@gmail.com>2022-06-10 14:21:49 +0200
commit5d32f313fb6da996d57258e6a0a8fd916a5702b9 (patch)
treebb4af6478430e44b4e8d489e8a5bcdc1f2b596ec
parent0503bc0149d310cf8d07bbb793687eda5ac2ce72 (diff)
downloadrust-5d32f313fb6da996d57258e6a0a8fd916a5702b9.tar.gz
rust-5d32f313fb6da996d57258e6a0a8fd916a5702b9.zip
Fix copy paste error
-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 179c6e78807..027a901c08c 100644
--- a/library/std/src/os/windows/process.rs
+++ b/library/std/src/os/windows/process.rs
@@ -201,7 +201,7 @@ impl ChildExt for process::Child {
 /// This is so that future additional methods are not breaking changes.
 #[stable(feature = "windows_process_exit_code_from", since = "1.63.0")]
 pub trait ExitCodeExt: Sealed {
-    /// Creates a new `ExitStatus` from the raw underlying `u32` return value of
+    /// Creates a new `ExitCode` from the raw underlying `u32` return value of
     /// a process.
     #[stable(feature = "windows_process_exit_code_from", since = "1.63.0")]
     fn from_raw(raw: u32) -> Self;