From 6ed9c6ee88de88a13b7de5f7876ef9cfc1470a7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Tue, 20 Sep 2016 19:48:31 +0200 Subject: [PATCH] Minor formatting nit. --- src/gl_context.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gl_context.rs b/src/gl_context.rs index 3613f9c9..a4d81b30 100644 --- a/src/gl_context.rs +++ b/src/gl_context.rs @@ -26,7 +26,8 @@ pub struct GLContext { } impl GLContext - where Native: NativeGLContextMethods { + where Native: NativeGLContextMethods +{ pub fn create(shared_with: Option<&Native::Handle>) -> Result, &'static str> { let native_context = try!(Native::create_shared(shared_with)); try!(native_context.make_current());