From 8cf875434c8bbefe8227da80484a4dfbc69cd864 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Thu, 2 Apr 2015 10:13:01 +0200 Subject: Fix the default value for OpenGL flag again --- src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/window.rs') diff --git a/src/window.rs b/src/window.rs index 35a956e..acdf445 100644 --- a/src/window.rs +++ b/src/window.rs @@ -74,7 +74,7 @@ impl<'a> WindowBuilder<'a> { /// Sets the *debug* flag for the OpenGL context. /// - /// The default value for this flag is `!cfg!(ndebug)`, which means that it's enabled + /// The default value for this flag is `cfg!(debug_assertions)`, which means that it's enabled /// when you run `cargo build` and disabled when you run `cargo build --release`. pub fn with_gl_debug_flag(mut self, flag: bool) -> WindowBuilder<'a> { self.attribs.gl_debug = flag; -- cgit v1.2.3