Fixed typo in src/cursor.rs (#531)

This commit is contained in:
joyal-mathew 2021-01-02 09:26:26 -05:00 committed by GitHub
parent 6c0f8ebcf6
commit b442de72be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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. /// and moves it to the first column.
/// ///
/// # Notes /// # 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. /// and moves it to the first column.
/// ///
/// # Notes /// # Notes