Skip to content

Commit 65b380f

Browse files
committed
Convert to TODOs to FIXMEs as per matklad
1 parent 55a2998 commit 65b380f

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

crates/ra_syntax/src/ast/generated/nodes.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2650,8 +2650,7 @@ impl ast::AttrsOwner for ModuleItem {}
26502650
impl ast::VisibilityOwner for ModuleItem {}
26512651
/// Any kind of item that may appear in an impl block
26522652
///
2653-
/// // TODO: is the following a fixme?
2654-
/// impl blocks can also contain MacroCall
2653+
/// // FIXME: impl blocks can also contain MacroCall
26552654
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
26562655
pub enum AssocItem {
26572656
FnDef(FnDef),
@@ -2662,8 +2661,7 @@ impl ast::NameOwner for AssocItem {}
26622661
impl ast::AttrsOwner for AssocItem {}
26632662
/// Any kind of item that may appear in an extern block
26642663
///
2665-
/// // TODO: is the following a fixme?
2666-
/// extern blocks can also contain MacroCall
2664+
/// // FIXME: extern blocks can also contain MacroCall
26672665
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
26682666
pub enum ExternItem {
26692667
FnDef(FnDef),

xtask/src/ast_src.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2150,16 +2150,14 @@ pub(crate) const AST_SRC: AstSrc = AstSrc {
21502150

21512151
/// Any kind of item that may appear in an impl block
21522152
///
2153-
/// // TODO: is the following a fixme?
2154-
/// impl blocks can also contain MacroCall
2153+
/// // FIXME: impl blocks can also contain MacroCall
21552154
enum AssocItem: NameOwner, AttrsOwner {
21562155
FnDef, TypeAliasDef, ConstDef
21572156
}
21582157

21592158
/// Any kind of item that may appear in an extern block
21602159
///
2161-
/// // TODO: is the following a fixme?
2162-
/// extern blocks can also contain MacroCall
2160+
/// // FIXME: extern blocks can also contain MacroCall
21632161
enum ExternItem: NameOwner, AttrsOwner, VisibilityOwner {
21642162
FnDef, StaticDef
21652163
}

0 commit comments

Comments
 (0)