diff --git a/src/control.rs b/src/control.rs index 7d0bd7470fa6e10ae1679c40d0513f57ddf03c49..3d61109053b13961c15cd9e46e4e480ee5743b65 100644 --- a/src/control.rs +++ b/src/control.rs @@ -121,7 +121,7 @@ pub trait TermWrite { } } - /// Scroll the window up. + /// Scroll the window `num` spaces up. #[inline] fn scroll_up(&mut self, num: u32) -> io::Result<usize> { if num > 0 { @@ -136,7 +136,7 @@ pub trait TermWrite { } } - /// Scroll the window down. + /// Scroll the window `num` spaces down. #[inline] fn scroll_down(&mut self, num: u32) -> io::Result<usize> { if num > 0 {