Skip to content

Commit 1e90a0f

Browse files
pietroalbinicharmitro
authored andcommitted
replace version placeholder
1 parent eeb90cd commit 1e90a0f

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

compiler/rustc_lint/src/shadowed_into_iter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ declare_lint! {
5252
/// Since Rust 1.80.0, boxed slices implement `IntoIterator`. However, to avoid
5353
/// breakage, `boxed_slice.into_iter()` in Rust 2015, 2018, and 2021 code will still
5454
/// behave as `(&boxed_slice).into_iter()`, returning an iterator over
55-
/// references, just like in Rust 1.79.0 and earlier.
55+
/// references, just like in Rust 1.80.0 and earlier.
5656
/// This only applies to the method call syntax `boxed_slice.into_iter()`, not to
5757
/// any other syntax such as `for _ in boxed_slice` or `IntoIterator::into_iter(boxed_slice)`.
5858
pub BOXED_SLICE_INTO_ITER,

library/alloc/src/collections/binary_heap/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,10 @@ impl<T: Ord> BinaryHeap<T> {
440440
/// heap.push(4);
441441
/// ```
442442
#[stable(feature = "rust1", since = "1.0.0")]
443-
#[rustc_const_stable(feature = "const_binary_heap_constructor", since = "1.80.0")]
443+
#[rustc_const_stable(
444+
feature = "const_binary_heap_constructor",
445+
since = "1.80.0"
446+
)]
444447
#[must_use]
445448
pub const fn new() -> BinaryHeap<T> {
446449
BinaryHeap { data: vec![] }

src/doc/book

Submodule book updated 64 files

src/tools/cargo

Submodule cargo updated 369 files

0 commit comments

Comments
 (0)