Skip to content

Commit a280b15

Browse files
committed
fix: correct doc comment indentation for Clippy
1 parent bcac683 commit a280b15

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cortex-tui/src/app/state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ impl AppState {
465465
/// # Arguments
466466
/// * `tool` - Optional tool name being executed
467467
/// * `reset_timer` - If true, resets the prompt elapsed timer (use for new user prompts).
468-
/// If false, preserves existing timer (use for tool continuations).
468+
/// If false, preserves existing timer (use for tool continuations).
469469
pub fn start_streaming(&mut self, tool: Option<String>, reset_timer: bool) {
470470
self.streaming.start(tool, reset_timer);
471471
// Use typewriter only if streaming animation is enabled

src/cortex-tui/src/app/streaming.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ impl StreamingState {
2626
/// # Arguments
2727
/// * `tool` - Optional tool name being executed
2828
/// * `reset_timer` - If true, resets `prompt_started_at` to now (use for new user prompts).
29-
/// If false, preserves existing timer (use for tool continuations).
29+
/// If false, preserves existing timer (use for tool continuations).
3030
pub fn start(&mut self, tool: Option<String>, reset_timer: bool) {
3131
self.is_streaming = true;
3232
self.thinking = true;

0 commit comments

Comments
 (0)