about summary refs log tree commit diff
path: root/library/std/src/sys/unix/mod.rs
diff options
context:
space:
mode:
authorjonathanCogan <jonathanecogan@gmail.com>2022-10-28 16:48:00 -0700
committerMara Bos <m-ou.se@m-ou.se>2022-12-30 14:00:42 +0100
commitdb47071df2647f90da5a66624caf262fa3a17456 (patch)
tree2bf358a7c3997b7dd80ccd17dda0d52f0d82ff31 /library/std/src/sys/unix/mod.rs
parent72067c77bdc1e8e339b9ed378a2c0ca0a9367c4d (diff)
downloadrust-db47071df2647f90da5a66624caf262fa3a17456.tar.gz
rust-db47071df2647f90da5a66624caf262fa3a17456.zip
Replace libstd, libcore, liballoc in line comments.
Diffstat (limited to 'library/std/src/sys/unix/mod.rs')
-rw-r--r--library/std/src/sys/unix/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/unix/mod.rs b/library/std/src/sys/unix/mod.rs
index 233e4a26bdc..9d7a06852b7 100644
--- a/library/std/src/sys/unix/mod.rs
+++ b/library/std/src/sys/unix/mod.rs
@@ -164,7 +164,7 @@ pub unsafe fn init(argc: isize, argv: *const *const u8, sigpipe: u8) {
     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`.