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, }