Unnamed repository; edit this file 'description' to name the repository.
Auto merge of #18029 - lnicola:minor-stuff, r=lnicola
minor: fix two nits
bors 2024-09-03
parent 5461f49 · parent 98cc4b6 · commit 304e5f5
-rw-r--r--crates/hir-ty/src/consteval.rs2
-rw-r--r--crates/ide-assists/src/handlers/toggle_macro_delimiter.rs9
2 files changed, 4 insertions, 7 deletions
diff --git a/crates/hir-ty/src/consteval.rs b/crates/hir-ty/src/consteval.rs
index e5c493ac56..968a828e9d 100644
--- a/crates/hir-ty/src/consteval.rs
+++ b/crates/hir-ty/src/consteval.rs
@@ -287,7 +287,7 @@ pub(crate) fn const_eval_discriminant_variant(
}
let repr = db.enum_data(loc.parent).repr;
- let is_signed = repr.and_then(|repr| repr.int).is_none_or(|int| int.is_signed());
+ let is_signed = IsNoneOr::is_none_or(repr.and_then(|repr| repr.int), |int| int.is_signed());
let mir_body = db.monomorphized_mir_body(
def,
diff --git a/crates/ide-assists/src/handlers/toggle_macro_delimiter.rs b/crates/ide-assists/src/handlers/toggle_macro_delimiter.rs
index eedb2ea3b9..e452b5f778 100644
--- a/crates/ide-assists/src/handlers/toggle_macro_delimiter.rs
+++ b/crates/ide-assists/src/handlers/toggle_macro_delimiter.rs
@@ -64,12 +64,9 @@ pub(crate) fn toggle_macro_delimiter(acc: &mut Assists, ctx: &AssistContext<'_>)
acc.add(
AssistId("toggle_macro_delimiter", AssistKind::Refactor),
match token {
- MacroDelims::LPar => "Replace delimiters with braces",
- MacroDelims::RPar => "Replace delimiters with braces",
- MacroDelims::LBra => "Replace delimiters with parentheses",
- MacroDelims::RBra => "Replace delimiters with parentheses",
- MacroDelims::LCur => "Replace delimiters with brackets",
- MacroDelims::RCur => "Replace delimiters with brackets",
+ MacroDelims::LPar | MacroDelims::RPar => "Replace delimiters with braces",
+ MacroDelims::LBra | MacroDelims::RBra => "Replace delimiters with parentheses",
+ MacroDelims::LCur | MacroDelims::RCur => "Replace delimiters with brackets",
},
token_tree.syntax().text_range(),
|builder| {