We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93e363e commit 24d006bCopy full SHA for 24d006b
compiler/codegen/src/compile.rs
@@ -3393,10 +3393,7 @@ fn clean_doc(doc: &str) -> String {
3393
// copy subsequent lines without margin.
3394
for line in doc.split('\n').skip(1) {
3395
cleaned.push('\n');
3396
- let cleaned_line = line
3397
- .chars()
3398
- .skip(margin)
3399
- .collect::<String>();
+ let cleaned_line = line.chars().skip(margin).collect::<String>();
3400
cleaned.push_str(&cleaned_line);
3401
}
3402
0 commit comments