From: rhysd Date: Fri, 1 Feb 2019 02:39:35 +0000 (+0900) Subject: remove TODO comment which was already done X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=06e4e9cf27c7aa5054068ad1aaf26a1b4ead97a1;p=rust.git remove TODO comment which was already done --- 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 @@ fn check_mac(&mut self, cx: &EarlyContext<'_>, mac: &ast::Mac) { 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, ); }