aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorFlowerBOII <[email protected]>2021-01-06 10:06:02 +0000
committerFlowerBOII <[email protected]>2021-01-06 10:06:02 +0000
commit64f8ec46324ebe838d10bd2ae739b543ca894a86 (patch)
tree5a8189d2f62900d94b8057210293a712c48d1874 /crates
parent861a54727003e054629b5bca5d94f8e7a4554cef (diff)
Remove a part of the deprecated autocompletion
Diffstat (limited to 'crates')
-rw-r--r--crates/completion/src/completions/attribute.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/completion/src/completions/attribute.rs b/crates/completion/src/completions/attribute.rs
index 8695eed39..89ba68dc7 100644
--- a/crates/completion/src/completions/attribute.rs
+++ b/crates/completion/src/completions/attribute.rs
@@ -98,7 +98,7 @@ const ATTRIBUTES: &[AttrCompletion] = &[
98 attr(r#"crate_name = """#, Some("crate_name"), Some(r#"crate_name = "${0:crate_name}""#)) 98 attr(r#"crate_name = """#, Some("crate_name"), Some(r#"crate_name = "${0:crate_name}""#))
99 .prefer_inner(), 99 .prefer_inner(),
100 attr("deny(…)", Some("deny"), Some("deny(${0:lint})")), 100 attr("deny(…)", Some("deny"), Some("deny(${0:lint})")),
101 attr(r#"deprecated = "…""#, Some("deprecated"), Some(r#"deprecated = "${0:reason}""#)), 101 attr(r#"deprecated "…""#, Some("deprecated"), Some(r#"deprecated"#)),
102 attr("derive(…)", Some("derive"), Some(r#"derive(${0:Debug})"#)), 102 attr("derive(…)", Some("derive"), Some(r#"derive(${0:Debug})"#)),
103 attr( 103 attr(
104 r#"export_name = "…""#, 104 r#"export_name = "…""#,