From 25910bcde6aca341dd96fb6a15b964dff7c4b98a Mon Sep 17 00:00:00 2001 From: tamasfe Date: Sat, 1 Apr 2023 16:31:16 +0200 Subject: [PATCH] chore: replace TODO comment with FIXME --- crates/hir-def/src/path/lower.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/hir-def/src/path/lower.rs b/crates/hir-def/src/path/lower.rs index 6c7e1c25d61..c35f915b00e 100644 --- a/crates/hir-def/src/path/lower.rs +++ b/crates/hir-def/src/path/lower.rs @@ -219,7 +219,7 @@ pub(super) fn lower_generic_args( args.push(GenericArg::Const(arg)) } ast::GenericArg::ReturnTypeArg(_) => { - // TODO: return type notation is experimental, we don't do anything with it yet. + // FIXME: return type notation is experimental, we don't do anything with it yet. } } }