Skip to content

Commit d8837ab

Browse files
committed
chore: fix clippy
1 parent 41e9297 commit d8837ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/fs_service/io/read.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ impl FileSystemService {
130130
let start_pos = if line_count <= n {
131131
0 // Read from start if fewer than n lines
132132
} else {
133-
*newline_positions.get(n-1).unwrap_or(&0) + 1
133+
*newline_positions.get(n - 1).unwrap_or(&0) + 1
134134
};
135135

136136
// Read forward from start_pos

0 commit comments

Comments
 (0)