Skip to content
Open
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
4 changes: 1 addition & 3 deletions library/std/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,6 @@
//
// Language features:
// tidy-alphabetical-start

// stabilization was reverted after it hit beta
#![feature(alloc_error_handler)]
#![feature(allocator_internals)]
#![feature(allow_internal_unsafe)]
Expand Down Expand Up @@ -421,7 +419,7 @@
#![default_lib_allocator]

// The Rust prelude
// The compiler expects the prelude definition to be defined before it's use statement.
// The compiler expects the prelude definition to be defined before its use statement.
pub mod prelude;

// Explicitly import the prelude. The compiler uses this same unstable attribute
Expand Down
Loading