tweak description of terminal_size_pixels() to fit in with the rest

This commit is contained in:
rabite 2020-05-22 01:09:02 +02:00
parent a448f510f0
commit 0e905906d4
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ pub fn terminal_size() -> io::Result<(u16, u16)> {
}
}
/// Get the size of the terminal, in pixels
/// Get the size of the terminal in pixels.
pub fn terminal_size_pixels() -> io::Result<(u16, u16)> {
unsafe {
let mut size: TermSize = mem::zeroed();