Skip to content

Commit fe2409f

Browse files
unhappychoiceclaude
andcommitted
fix: apply cargo fmt formatting fixes
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 526caef commit fe2409f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/game/display_ratatui.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ impl GameDisplayRatatui {
175175
let should_skip = skip_cache.get(&i).copied().unwrap_or(false);
176176
let is_comment = comment_cache.get(&i).copied().unwrap_or(false);
177177
let is_current_line = line_number == current_line_number;
178-
178+
179179
if !should_skip {
180180
let style = self.get_char_style_with_highlight(
181181
i,
@@ -185,11 +185,11 @@ impl GameDisplayRatatui {
185185
current_mistake_position,
186186
is_current_line,
187187
);
188-
188+
189189
// Show newline as enter symbol
190190
current_line_spans.push(Span::styled("↵".to_string(), style));
191191
}
192-
192+
193193
lines.push(Line::from(current_line_spans));
194194
current_line_spans = Vec::new();
195195
current_line_width = 0;

0 commit comments

Comments
 (0)