We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2d680ff + e7a4b96 commit 78f38a2Copy full SHA for 78f38a2
crates/ra_syntax/src/ast/tokens.rs
@@ -66,7 +66,7 @@ const COMMENT_PREFIX_TO_KIND: &[(&str, CommentKind)] = {
66
("///", CommentKind { shape: Line, doc: Some(Outer) }),
67
("//!", CommentKind { shape: Line, doc: Some(Inner) }),
68
("/**", CommentKind { shape: Block, doc: Some(Outer) }),
69
- ("/**", CommentKind { shape: Block, doc: Some(Inner) }),
+ ("/*!", CommentKind { shape: Block, doc: Some(Inner) }),
70
("//", CommentKind { shape: Line, doc: None }),
71
("/*", CommentKind { shape: Block, doc: None }),
72
]
0 commit comments