Skip to content

Commit efddf59

Browse files
dtolnayijackson
authored andcommitted
Fix typo saeled -> sealed
1 parent f3e7199 commit efddf59

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/std/src/sys/unix/ext/process.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ impl CommandExt for process::Command {
172172

173173
/// Unix-specific extensions to [`process::ExitStatus`].
174174
///
175-
/// This trait is saeled (since Rust 1.51): it cannot be implemented outside the standard library.
175+
/// This trait is sealed: it cannot be implemented outside the standard library.
176176
/// This is so that future additional methods are not breaking changes.
177177
#[stable(feature = "rust1", since = "1.0.0")]
178178
pub trait ExitStatusExt: private::Sealed {

library/std/src/sys/windows/ext/process.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ impl IntoRawHandle for process::ChildStderr {
8282

8383
/// Windows-specific extensions to [`process::ExitStatus`].
8484
///
85-
/// This trait is saeled (since Rust 1.51): it cannot be implemented outside the standard library.
85+
/// This trait is sealed: it cannot be implemented outside the standard library.
8686
/// This is so that future additional methods are not breaking changes.
8787
#[stable(feature = "exit_status_from", since = "1.12.0")]
8888
pub trait ExitStatusExt: private::Sealed {

0 commit comments

Comments
 (0)