diff options
| author | jonathanCogan <jonathanecogan@gmail.com> | 2022-10-28 16:48:00 -0700 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2022-12-30 14:00:42 +0100 |
| commit | db47071df2647f90da5a66624caf262fa3a17456 (patch) | |
| tree | 2bf358a7c3997b7dd80ccd17dda0d52f0d82ff31 /library/std/src/lib.rs | |
| parent | 72067c77bdc1e8e339b9ed378a2c0ca0a9367c4d (diff) | |
| download | rust-db47071df2647f90da5a66624caf262fa3a17456.tar.gz rust-db47071df2647f90da5a66624caf262fa3a17456.zip | |
Replace libstd, libcore, liballoc in line comments.
Diffstat (limited to 'library/std/src/lib.rs')
| -rw-r--r-- | library/std/src/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs index 65d4c3c891e..13dfd41abbf 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -202,7 +202,7 @@ no_global_oom_handling, not(no_global_oom_handling) ))] -// To run libstd tests without x.py without ending up with two copies of libstd, Miri needs to be +// To run std tests without x.py without ending up with two copies of std, Miri needs to be // able to "empty" this crate. See <https://github.com/rust-lang/miri-test-libstd/issues/4>. // rustc itself never sets the feature, so this line has no affect there. #![cfg(any(not(feature = "miri-test-libstd"), test, doctest))] @@ -532,7 +532,7 @@ pub mod process; pub mod sync; pub mod time; -// Pull in `std_float` crate into libstd. The contents of +// Pull in `std_float` crate into std. The contents of // `std_float` are in a different repository: rust-lang/portable-simd. #[path = "../../portable-simd/crates/std_float/src/lib.rs"] #[allow(missing_debug_implementations, dead_code, unsafe_op_in_unsafe_fn, unused_unsafe)] @@ -602,7 +602,7 @@ mod personality; #[allow(dead_code, unused_attributes, fuzzy_provenance_casts)] mod backtrace_rs; -// Re-export macros defined in libcore. +// Re-export macros defined in core. #[stable(feature = "rust1", since = "1.0.0")] #[allow(deprecated, deprecated_in_future)] pub use core::{ @@ -610,7 +610,7 @@ pub use core::{ unimplemented, unreachable, write, writeln, }; -// Re-export built-in macros defined through libcore. +// Re-export built-in macros defined through core. #[stable(feature = "builtin_macro_prelude", since = "1.38.0")] #[allow(deprecated)] pub use core::{ |
