about summary refs log tree commit diff
path: root/library/std/src/path.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/path.rs
parent72067c77bdc1e8e339b9ed378a2c0ca0a9367c4d (diff)
downloadrust-db47071df2647f90da5a66624caf262fa3a17456.tar.gz
rust-db47071df2647f90da5a66624caf262fa3a17456.zip
Replace libstd, libcore, liballoc in line comments.
Diffstat (limited to 'library/std/src/path.rs')
-rw-r--r--library/std/src/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/path.rs b/library/std/src/path.rs
index 73b5056e932..3023cac9bcc 100644
--- a/library/std/src/path.rs
+++ b/library/std/src/path.rs
@@ -306,7 +306,7 @@ unsafe fn u8_slice_as_os_str(s: &[u8]) -> &OsStr {
     // This casts are safe as OsStr is internally a wrapper around [u8] on all
     // platforms.
     //
-    // Note that currently this relies on the special knowledge that libstd has;
+    // Note that currently this relies on the special knowledge that std has;
     // these types are single-element structs but are not marked
     // repr(transparent) or repr(C) which would make these casts not allowable
     // outside std.