Skip to content

Commit

Permalink
Fix typo saeled -> sealed
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay authored and ijackson committed Jan 13, 2021
1 parent f3e7199 commit efddf59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/std/src/sys/unix/ext/process.rs
Expand Up @@ -172,7 +172,7 @@ impl CommandExt for process::Command {

/// Unix-specific extensions to [`process::ExitStatus`].
///
/// This trait is saeled (since Rust 1.51): it cannot be implemented outside the standard library.
/// This trait is sealed: it cannot be implemented outside the standard library.
/// This is so that future additional methods are not breaking changes.
#[stable(feature = "rust1", since = "1.0.0")]
pub trait ExitStatusExt: private::Sealed {
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/sys/windows/ext/process.rs
Expand Up @@ -82,7 +82,7 @@ impl IntoRawHandle for process::ChildStderr {

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

0 comments on commit efddf59

Please sign in to comment.