summaryrefslogtreecommitdiffstats
path: root/glow
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-07-10 02:39:12 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-07-10 02:39:12 +0200
commit2118a726f8b6134820e1ca5b7b802fa1344e453a (patch)
tree2854867970da7f91510b864e3498f6efb7c40ac5 /glow
parentdc0e423142f053c59c326d92920e7829b6852cca (diff)
downloadiced-2118a726f8b6134820e1ca5b7b802fa1344e453a.tar.gz
iced-2118a726f8b6134820e1ca5b7b802fa1344e453a.tar.bz2
iced-2118a726f8b6134820e1ca5b7b802fa1344e453a.zip
Write documentation for the new `overlay` API
Diffstat (limited to 'glow')
-rw-r--r--glow/src/lib.rs2
-rw-r--r--glow/src/widget/combo_box.rs1
2 files changed, 2 insertions, 1 deletions
diff --git a/glow/src/lib.rs b/glow/src/lib.rs
index bdd854e3..a6c8a75a 100644
--- a/glow/src/lib.rs
+++ b/glow/src/lib.rs
@@ -2,7 +2,7 @@
//!
//! [`glow`]: https://github.com/grovesNL/glow
//! [`iced_native`]: https://github.com/hecrj/iced/tree/master/native
-//#![deny(missing_docs)]
+#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![deny(unused_results)]
#![forbid(rust_2018_idioms)]
diff --git a/glow/src/widget/combo_box.rs b/glow/src/widget/combo_box.rs
index bfface29..20feeaca 100644
--- a/glow/src/widget/combo_box.rs
+++ b/glow/src/widget/combo_box.rs
@@ -1,3 +1,4 @@
+//! Display a dropdown list of selectable values.
pub use iced_native::combo_box::State;
pub use iced_graphics::combo_box::{Style, StyleSheet};