From c3dbd1b21f661622f178fc52d1da8f312d71aaea Mon Sep 17 00:00:00 2001 From: Jack Mac Date: Wed, 15 Sep 2021 12:00:16 -0400 Subject: [PATCH] added a commented out `deny(missing_docs)` This won't be done this release cycle, but i'd like this to be a goal of the repo to be well commented. --- imgui/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/imgui/src/lib.rs b/imgui/src/lib.rs index 7697fa2..02c73ef 100644 --- a/imgui/src/lib.rs +++ b/imgui/src/lib.rs @@ -1,5 +1,7 @@ #![cfg_attr(test, allow(clippy::float_cmp))] #![deny(rust_2018_idioms)] +// #![deny(missing_docs)] + pub extern crate imgui_sys as sys; use std::cell;