Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library/std/src/os/hermit/ffi.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! HermitCore-specific extension to the primitives in the `std::ffi` module
//! Hermit-specific extension to the primitives in the `std::ffi` module
//!
//! # Examples
//!
Expand Down
6 changes: 3 additions & 3 deletions library/std/src/sys/pal/hermit/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! System bindings for HermitCore
//! System bindings for Hermit
//!
//! This module contains the facade (aka platform-specific) implementations of
//! OS level functionality for HermitCore.
//! OS level functionality for Hermit.
//!
//! This is all super highly experimental and not actually intended for
//! wide/production use yet, it's still all in the experimental category. This
Expand Down Expand Up @@ -30,7 +30,7 @@ pub fn unsupported<T>() -> io::Result<T> {
}

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

pub fn abort_internal() -> ! {
Expand Down
2 changes: 1 addition & 1 deletion src/librustdoc/clean/cfg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ impl fmt::Display for Display<'_> {
"freebsd" => "FreeBSD",
"fuchsia" => "Fuchsia",
"haiku" => "Haiku",
"hermit" => "HermitCore",
"hermit" => "Hermit",
"illumos" => "illumos",
"ios" => "iOS",
"l4re" => "L4Re",
Expand Down
Loading