diff options
| author | David Tolnay <dtolnay@gmail.com> | 2021-01-10 18:11:00 -0800 |
|---|---|---|
| committer | Ian Jackson <ijackson@chiark.greenend.org.uk> | 2021-01-13 12:50:29 +0000 |
| commit | efddf5949f36d68ff28abddb2c297c934d5b8eb5 (patch) | |
| tree | 2a9a3add176712d26f760345fb805c6d23b67dc6 /library/std/src | |
| parent | f3e7199a79d23741e1fc6b0e58652d6de5f97fa0 (diff) | |
| download | rust-efddf5949f36d68ff28abddb2c297c934d5b8eb5.tar.gz rust-efddf5949f36d68ff28abddb2c297c934d5b8eb5.zip | |
Fix typo saeled -> sealed
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/sys/unix/ext/process.rs | 2 | ||||
| -rw-r--r-- | library/std/src/sys/windows/ext/process.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/sys/unix/ext/process.rs b/library/std/src/sys/unix/ext/process.rs index a72417818d0..f4c67b225e6 100644 --- a/library/std/src/sys/unix/ext/process.rs +++ b/library/std/src/sys/unix/ext/process.rs @@ -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 { diff --git a/library/std/src/sys/windows/ext/process.rs b/library/std/src/sys/windows/ext/process.rs index 300385e966d..7a92381d660 100644 --- a/library/std/src/sys/windows/ext/process.rs +++ b/library/std/src/sys/windows/ext/process.rs @@ -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 { |
