From c6ffedccbdf61cf86591989e61cae73d95251df5 Mon Sep 17 00:00:00 2001 From: Aceeri Date: Mon, 9 Nov 2015 03:13:52 -0800 Subject: Removed comments, fixed Some/None matches, removed unnecessary lock checks --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 1056e8b..c543155 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -527,12 +527,12 @@ pub struct WindowAttributes { /// The default is `None`. pub dimensions: Option<(u32, u32)>, - /// The minimum dimensions a window can be, If this is `None`, the minimum will be set to 800x600. + /// The minimum dimensions a window can be, If this is `None`, the window will have no minimum dimensions (aside from reserved). /// /// The default is `None`. pub min_dimensions: Option<(u32, u32)>, - /// The maximum dimensions a window can be, If this is `None`, the maximum will be the dimensions of the primary monitor. + /// The maximum dimensions a window can be, If this is `None`, the maximum will have no maximum or will be set to the primary monitor's dimensions by the platform. /// /// The default is `None`. pub max_dimensions: Option<(u32, u32)>, -- cgit v1.2.3