From 06e4e9cf27c7aa5054068ad1aaf26a1b4ead97a1 Mon Sep 17 00:00:00 2001 From: rhysd Date: Fri, 1 Feb 2019 11:39:35 +0900 Subject: [PATCH] remove TODO comment which was already done --- clippy_lints/src/dbg_macro.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/dbg_macro.rs b/clippy_lints/src/dbg_macro.rs index 3dce8189b71..1759db1ca3a 100644 --- a/clippy_lints/src/dbg_macro.rs +++ b/clippy_lints/src/dbg_macro.rs @@ -47,7 +47,7 @@ impl EarlyLintPass for Pass { mac.span, "`dbg!` macro is intended as a debugging tool", "ensure to avoid having uses of it in version control", - mac.node.tts.to_string(), // TODO: to string + mac.node.tts.to_string(), Applicability::MaybeIncorrect, ); }