]> git.lizzy.rs Git - rust.git/commitdiff
remove TODO
authorIceSentry <c.giguere42@gmail.com>
Wed, 8 Apr 2020 22:11:24 +0000 (18:11 -0400)
committerIceSentry <c.giguere42@gmail.com>
Wed, 8 Apr 2020 22:11:24 +0000 (18:11 -0400)
crates/ra_ide/src/inlay_hints.rs

index 6a4fe15fd758c97cd0a5d01bead685b2534d0965..a86e18fbbc2577af100c2862c8b72308d6b85f65 100644 (file)
@@ -251,7 +251,6 @@ fn should_show_param_hint(
 
     // avoid displaying hints for common functions like map, filter, etc.
     // or other obvious words used in std
-    // TODO ignore "bytes" if the type is [u8; n]
     let is_obvious_param_name = match param_name {
         "predicate" | "value" | "pat" | "rhs" | "other" => true,
         _ => false,