diff options
author | Jade <[email protected]> | 2021-06-14 05:57:10 +0100 |
---|---|---|
committer | Jade <[email protected]> | 2021-06-14 05:58:05 +0100 |
commit | 20b325c7d50092cada3408aee958b3d523541f2c (patch) | |
tree | 5f8078106976c0573ef05861241f434fb5271891 /crates/ide_completion/src | |
parent | 660a89620f65225359559ddcaf158bdb9dfe0d4c (diff) |
tree-wide: make rustdoc links spiky so they are clickable
Diffstat (limited to 'crates/ide_completion/src')
-rw-r--r-- | crates/ide_completion/src/completions/attribute.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_completion/src/completions/attribute.rs b/crates/ide_completion/src/completions/attribute.rs index 7f76e357e..6df569c2a 100644 --- a/crates/ide_completion/src/completions/attribute.rs +++ b/crates/ide_completion/src/completions/attribute.rs | |||
@@ -219,7 +219,7 @@ static KIND_TO_ATTRIBUTES: Lazy<FxHashMap<SyntaxKind, &[&str]>> = Lazy::new(|| { | |||
219 | }); | 219 | }); |
220 | const EXPR_ATTRIBUTES: &[&str] = attrs!(); | 220 | const EXPR_ATTRIBUTES: &[&str] = attrs!(); |
221 | 221 | ||
222 | /// https://doc.rust-lang.org/reference/attributes.html#built-in-attributes-index | 222 | /// <https://doc.rust-lang.org/reference/attributes.html#built-in-attributes-index> |
223 | // Keep these sorted for the binary search! | 223 | // Keep these sorted for the binary search! |
224 | const ATTRIBUTES: &[AttrCompletion] = &[ | 224 | const ATTRIBUTES: &[AttrCompletion] = &[ |
225 | attr("allow(…)", Some("allow"), Some("allow(${0:lint})")), | 225 | attr("allow(…)", Some("allow"), Some("allow(${0:lint})")), |