summaryrefslogtreecommitdiff
path: root/glfw/src/window.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-10-26 21:05:34 +0200
committerHampusM <hampus@hampusmat.com>2023-10-26 21:05:34 +0200
commiteab619bd5cfc520d3962097d16582eae6977d6dc (patch)
treec5a6ab322f33d452733bac233c631eb6a4fbcef9 /glfw/src/window.rs
parent76a3a021402e05823e1f82fd592c853a4a6be563 (diff)
style: increase max struct literal width to 36
Diffstat (limited to 'glfw/src/window.rs')
-rw-r--r--glfw/src/window.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/glfw/src/window.rs b/glfw/src/window.rs
index 1f3834e..b0c07ff 100644
--- a/glfw/src/window.rs
+++ b/glfw/src/window.rs
@@ -221,10 +221,7 @@ impl Builder
get_glfw_error()?;
- Ok(Window {
- _init: init,
- handle,
- })
+ Ok(Window { _init: init, handle })
}
}