style(lists): apply rustfmt to checkbox propagation
CI's cargo fmt --check flagged a few lines from the propagation patch that exceeded the wrapping threshold. No behavioural change. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1515,7 +1515,10 @@ pub mod ops {
|
||||
}
|
||||
let segment = &text[start..end];
|
||||
let bytes = segment.as_bytes();
|
||||
let line_end = bytes.iter().position(|&b| b == b'\n').unwrap_or(bytes.len());
|
||||
let line_end = bytes
|
||||
.iter()
|
||||
.position(|&b| b == b'\n')
|
||||
.unwrap_or(bytes.len());
|
||||
let bytes = &bytes[..line_end];
|
||||
let mut i = 0;
|
||||
while i + 2 < bytes.len() {
|
||||
|
||||
Reference in New Issue
Block a user