Skip to content

Commit 585f5d4

Browse files
committed
Use fixme instead of todo
1 parent 0847bc8 commit 585f5d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/assists/src/handlers/expand_glob_import.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ fn qux(bar: Bar, baz: Baz) {
709709

710710
#[test]
711711
fn expanding_glob_import_with_macro_defs() {
712-
// TODO: this is currently fails because `Definition::find_usages` ignores macros
712+
// FIXME: this is currently fails because `Definition::find_usages` ignores macros
713713
// https://github.com/rust-analyzer/rust-analyzer/issues/3484
714714
//
715715
// check_assist(

crates/ide_db/src/defs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ pub fn classify_name(sema: &Semantics<RootDatabase>, name: &ast::Name) -> Option
225225
}
226226
}
227227

228-
#[derive(Debug, Clone, PartialEq, Eq)]
228+
#[derive(Debug)]
229229
pub enum NameRefClass {
230230
ExternCrate(Crate),
231231
Definition(Definition),

0 commit comments

Comments
 (0)