We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30f8005 commit 7250fd1Copy full SHA for 7250fd1
src/term.rs
@@ -392,7 +392,7 @@ impl Term {
392
terminal_size(self)
393
}
394
395
- /// Move the cursor to `x` and `y`
+ /// Move the cursor to row `x` and column `y`.
396
#[inline]
397
pub fn move_cursor_to(&self, x: usize, y: usize) -> io::Result<()> {
398
move_cursor_to(self, x, y)
@@ -430,7 +430,7 @@ impl Term {
430
clear_line(self)
431
432
433
- /// Clear the last `n` lines.
+ /// Clear the last `n` lines before the current line.
434
///
435
/// This positions the cursor at the beginning of the first line
436
/// that was cleared.
0 commit comments