about summary refs log tree commit diff
path: root/library/core/src/array
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-10-13 03:59:00 +0000
committerbors <bors@rust-lang.org>2024-10-13 03:59:00 +0000
commitecf2d1fa4bd8166c696883b10f483122b1fe98a3 (patch)
tree18c963c7b385d49172e31bf764ced45026b90feb /library/core/src/array
parentef4e8259b5016d85e261587b605028b2ff06c13d (diff)
parent39071fdc586adccf18c01e5e3a1faa39bbc00c3a (diff)
downloadrust-ecf2d1fa4bd8166c696883b10f483122b1fe98a3.tar.gz
rust-ecf2d1fa4bd8166c696883b10f483122b1fe98a3.zip
Auto merge of #131635 - tgross35:rollup-df8il2t, r=tgross35
Rollup of 7 pull requests

Successful merges:

 - #131120 (Stabilize `const_option`)
 - #131334 (Enable sanitizers for loongarch64-unknown-*)
 - #131358 (force "HEAD" for non-CI and `git_upstream_merge_base` for CI environment)
 - #131418 (Use throw intrinsic from stdarch in wasm libunwind)
 - #131579 (Remap path prefix in the panic message of `tests/ui/meta/revision-bad.rs`)
 - #131591 (add latest crash tests)
 - #131626 (remove a couple of redundant String to String conversion)

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'library/core/src/array')
-rw-r--r--library/core/src/array/ascii.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/core/src/array/ascii.rs b/library/core/src/array/ascii.rs
index 05797b042ee..e2faef855bc 100644
--- a/library/core/src/array/ascii.rs
+++ b/library/core/src/array/ascii.rs
@@ -9,7 +9,6 @@ impl<const N: usize> [u8; N] {
     ///
     /// ```
     /// #![feature(ascii_char)]
-    /// #![feature(const_option)]
     ///
     /// const HEX_DIGITS: [std::ascii::Char; 16] =
     ///     *b"0123456789abcdef".as_ascii().unwrap();