]> git.lizzy.rs Git - rust.git/blobdiff - library/std/src/sys/unix/mod.rs
Rollup merge of #106886 - dtolnay:fastinstall, r=Mark-Simulacrum
[rust.git] / library / std / src / sys / unix / mod.rs
index 233e4a26bdc060d8bd1a0785e5ffe63e3b2fc52f..30a96be14300a8f8c07fb2f81cf52af12e640ef6 100644 (file)
@@ -40,7 +40,7 @@
 pub mod thread;
 pub mod thread_local_dtor;
 pub mod thread_local_key;
-pub mod thread_parker;
+pub mod thread_parking;
 pub mod time;
 
 #[cfg(target_os = "espidf")]
@@ -164,7 +164,7 @@ unsafe fn sanitize_standard_fds() {
     unsafe fn reset_sigpipe(#[allow(unused_variables)] sigpipe: u8) {
         #[cfg(not(any(target_os = "emscripten", target_os = "fuchsia", target_os = "horizon")))]
         {
-            // We don't want to add this as a public type to libstd, nor do we
+            // We don't want to add this as a public type to std, nor do we
             // want to `include!` a file from the compiler (which would break
             // Miri and xargo for example), so we choose to duplicate these
             // constants from `compiler/rustc_session/src/config/sigpipe.rs`.