diff --git a/src/sys/unix/size.rs b/src/sys/unix/size.rs index 2402271..abd8133 100644 --- a/src/sys/unix/size.rs +++ b/src/sys/unix/size.rs @@ -10,7 +10,7 @@ struct TermSize { x: c_ushort, y: c_ushort, } -/// Get the size of the terminal. +/// Get the size (columns, rows) of the terminal. pub fn terminal_size() -> io::Result<(u16, u16)> { unsafe { let mut size: TermSize = mem::zeroed();