Skip to content

Commit 3e29ac3

Browse files
Rollup merge of #153297 - Gelbpunkt:hermitcore-hermit, r=joboet
Update the name of the Hermit operating system The HermitCore name was dropped a while ago, the project is now simply called "Hermit". See for example [the website](https://hermit-os.org/). cc @stlankes @mkroening
2 parents 64bbb41 + cc64a37 commit 3e29ac3

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

library/std/src/os/hermit/ffi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! HermitCore-specific extension to the primitives in the `std::ffi` module
1+
//! Hermit-specific extension to the primitives in the `std::ffi` module
22
//!
33
//! # Examples
44
//!

library/std/src/sys/pal/hermit/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
//! System bindings for HermitCore
1+
//! System bindings for Hermit
22
//!
33
//! This module contains the facade (aka platform-specific) implementations of
4-
//! OS level functionality for HermitCore.
4+
//! OS level functionality for Hermit.
55
//!
66
//! This is all super highly experimental and not actually intended for
77
//! wide/production use yet, it's still all in the experimental category. This
@@ -30,7 +30,7 @@ pub fn unsupported<T>() -> io::Result<T> {
3030
}
3131

3232
pub fn unsupported_err() -> io::Error {
33-
io::const_error!(io::ErrorKind::Unsupported, "operation not supported on HermitCore yet")
33+
io::const_error!(io::ErrorKind::Unsupported, "operation not supported on Hermit yet")
3434
}
3535

3636
pub fn abort_internal() -> ! {

src/librustdoc/clean/cfg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ impl fmt::Display for Display<'_> {
429429
"freebsd" => "FreeBSD",
430430
"fuchsia" => "Fuchsia",
431431
"haiku" => "Haiku",
432-
"hermit" => "HermitCore",
432+
"hermit" => "Hermit",
433433
"illumos" => "illumos",
434434
"ios" => "iOS",
435435
"l4re" => "L4Re",

0 commit comments

Comments
 (0)