From 0e905906d431ec67a545d774564daa9429db0e7b Mon Sep 17 00:00:00 2001 From: rabite Date: Fri, 22 May 2020 01:09:02 +0200 Subject: [PATCH] tweak description of terminal_size_pixels() to fit in with the rest --- src/sys/unix/size.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sys/unix/size.rs b/src/sys/unix/size.rs index 2402271..e552c7b 100644 --- a/src/sys/unix/size.rs +++ b/src/sys/unix/size.rs @@ -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();