about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--crates/yt/src/ansi_escape_codes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/yt/src/ansi_escape_codes.rs b/crates/yt/src/ansi_escape_codes.rs
index 4528bd0..28a8370 100644
--- a/crates/yt/src/ansi_escape_codes.rs
+++ b/crates/yt/src/ansi_escape_codes.rs
@@ -10,7 +10,7 @@
 
 // see: https://en.wikipedia.org/wiki/ANSI_escape_code#Control_Sequence_Introducer_commands
 const CSI: &str = "\x1b[";
-pub(crate) fn erase_in_display_from_cursor() {
+pub(crate) fn erase_from_cursor_to_bottom() {
     print!("{CSI}0J");
 }
 pub(crate) fn cursor_up(number: usize) {