From 5029575ed038dbcb7f0147bc7996c11295fc9e13 Mon Sep 17 00:00:00 2001 From: LEAVING <52616273+LEAVING-7@users.noreply.github.com> Date: Mon, 23 Jan 2023 19:37:26 +0800 Subject: [PATCH] Fix typo: 'Viewport width' -> 'Viewport height' (#2615) --- crates/epaint/src/shape.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/epaint/src/shape.rs b/crates/epaint/src/shape.rs index 3771296d..9304a27b 100644 --- a/crates/epaint/src/shape.rs +++ b/crates/epaint/src/shape.rs @@ -768,7 +768,7 @@ pub struct ViewportInPixels { /// Viewport width in physical pixels. pub width_px: f32, - /// Viewport width in physical pixels. + /// Viewport height in physical pixels. pub height_px: f32, }