mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 12:54:58 +00:00
parent
d9fd7ca6a5
commit
f48ab3ebeb
1 changed files with 4 additions and 1 deletions
|
@ -160,7 +160,10 @@ fn n_attached_trivias<'a>(
|
||||||
if let Some((peek_kind, peek_text)) =
|
if let Some((peek_kind, peek_text)) =
|
||||||
trivias.peek().map(|(_, pair)| pair)
|
trivias.peek().map(|(_, pair)| pair)
|
||||||
{
|
{
|
||||||
if *peek_kind == COMMENT && peek_text.starts_with("///") {
|
if *peek_kind == COMMENT
|
||||||
|
&& peek_text.starts_with("///")
|
||||||
|
&& !peek_text.starts_with("////")
|
||||||
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue