From 1dd27fd904c6de58ba578d77d7a7ab82f4b72eb2 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sat, 11 Jun 2022 15:45:05 -0700 Subject: [PATCH] glfw: update monitor API to glfw@master Signed-off-by: Stephen Gutekanst --- glfw/src/Monitor.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glfw/src/Monitor.zig b/glfw/src/Monitor.zig index 4199ad8d..a0f02c47 100644 --- a/glfw/src/Monitor.zig +++ b/glfw/src/Monitor.zig @@ -49,7 +49,7 @@ pub inline fn getPos(self: Monitor) error{PlatformError}!Pos { /// /// This is the position of the upper-left corner of the work area of the monitor, along with the /// work area size. The work area is defined as the area of the monitor not occluded by the -/// operating system task bar where present. If no task bar exists then the work area is the +/// window system task bar where present. If no task bar exists then the work area is the /// monitor resolution in screen coordinates. const Workarea = struct { x: u32, @@ -88,7 +88,7 @@ const PhysicalSize = struct { /// Returns the physical size of the monitor. /// -/// Some systems do not provide accurate monitor size information, either because the monitor +/// Some platforms do not provide accurate monitor size information, either because the monitor /// [EDID](https://en.wikipedia.org/wiki/Extended_display_identification_data) /// data is incorrect or because the driver does not report it accurately. ///