We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a02e37 commit 1c67f77Copy full SHA for 1c67f77
1 file changed
crates/parser/src/ast/resolve.rs
@@ -514,7 +514,7 @@ impl Resolver {
514
}
515
let mut docs = String::new();
516
for doc in doc.docs.iter() {
517
- // Comments which are not doc-comments are silently ignored
+ // Comments which are not doc-comments are silently ignored
518
if let Some(doc) = doc.strip_prefix("///") {
519
docs.push_str(doc.trim_start_matches('/').trim());
520
docs.push('\n');
0 commit comments