From b442de72bed0943e14a70638d2456616f1e0979e Mon Sep 17 00:00:00 2001 From: joyal-mathew <76829818+joyal-mathew@users.noreply.github.com> Date: Sat, 2 Jan 2021 09:26:26 -0500 Subject: [PATCH] Fixed typo in src/cursor.rs (#531) --- src/cursor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cursor.rs b/src/cursor.rs index c212498..9491a1f 100644 --- a/src/cursor.rs +++ b/src/cursor.rs @@ -73,7 +73,7 @@ impl Command for MoveTo { } } -/// A command that moves the terminal cursor up the given number of lines, +/// A command that moves the terminal cursor down the given number of lines, /// and moves it to the first column. /// /// # Notes @@ -93,7 +93,7 @@ impl Command for MoveToNextLine { } } -/// A command that moves the terminal cursor down the given number of lines, +/// A command that moves the terminal cursor up the given number of lines, /// and moves it to the first column. /// /// # Notes