From 903570846e51df260925c81851d733dce5955b41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n?= Date: Tue, 1 Jun 2021 18:57:36 +0700 Subject: [PATCH] Fix documentation of `PlatformSpecific` settings --- winit/src/settings/windows.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/winit/src/settings/windows.rs b/winit/src/settings/windows.rs index 68dadefd..fc26acd7 100644 --- a/winit/src/settings/windows.rs +++ b/winit/src/settings/windows.rs @@ -4,9 +4,10 @@ /// The platform specific window settings of an application. #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub struct PlatformSpecific { - /// Parent Window + /// Parent window pub parent: Option, - /// Drap and Drop support + + /// Drag and drop support pub drag_and_drop: bool, }