Remove old feature flag in code comment

Since let_else feature has been stable in 1.65.0, it's now unnecessary
This commit is contained in:
koka 2023-02-01 19:30:21 +09:00
parent 4931f4549b
commit 20338fd378
No known key found for this signature in database
GPG key ID: 6C126A20CF0961EC

View file

@ -37,7 +37,6 @@ declare_clippy_lint! {
/// Could be written:
///
/// ```rust
/// # #![feature(let_else)]
/// # fn main () {
/// # let w = Some(0);
/// let Some(v) = w else { return };