这是indexloc提供的服务,不要输入任何密码
Skip to content

chore: fix typo 'buttom' #10477

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions crates/turborepo-ui/src/tui/pane.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ENTER_INTERACTIVE_HINT: &str = "i - Interact";
const HAS_SELECTION: &str = "c - Copy selection";
const SCROLL_LOGS: &str = "u/d - Scroll logs";
const PAGE_LOGS: &str = "U/D - Page logs";
const JUMP_IN_LOGS: &str = "t/b - Jump to top/buttom";
const JUMP_IN_LOGS: &str = "t/b - Jump to top/bottom";
const TASK_LIST_HIDDEN: &str = "h - Show task list";

pub struct TerminalPane<'a, W> {
Expand Down Expand Up @@ -106,7 +106,7 @@ mod test {
let pane = TerminalPane::new(&term, "foo", &LayoutSections::TaskList, true);
assert_eq!(
String::from(pane.footer()),
" i - Interact u/d - Scroll logs U/D - Page logs t/b - Jump to top/buttom"
" i - Interact u/d - Scroll logs U/D - Page logs t/b - Jump to top/bottom"
);
}

Expand All @@ -116,7 +116,7 @@ mod test {
let pane = TerminalPane::new(&term, "foo", &LayoutSections::TaskList, true);
assert_eq!(
String::from(pane.footer()),
" u/d - Scroll logs U/D - Page logs t/b - Jump to top/buttom"
" u/d - Scroll logs U/D - Page logs t/b - Jump to top/bottom"
);
}
}
Loading