summaryrefslogtreecommitdiffstats
path: root/native/src/widget/checkbox.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-11-24 10:44:55 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-11-24 10:44:55 +0100
commitf943764a292837cbf262a4f29dc0021d808852d6 (patch)
treee49d373873f5f6414936980fd6eb13f31347be7e /native/src/widget/checkbox.rs
parent7a8a79cd37eba3ac0f1e059b6efe34cc96b2602b (diff)
downloadiced-f943764a292837cbf262a4f29dc0021d808852d6.tar.gz
iced-f943764a292837cbf262a4f29dc0021d808852d6.tar.bz2
iced-f943764a292837cbf262a4f29dc0021d808852d6.zip
Fix `iced_native` widget examples
Diffstat (limited to 'native/src/widget/checkbox.rs')
-rw-r--r--native/src/widget/checkbox.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/widget/checkbox.rs b/native/src/widget/checkbox.rs
index 655fd0ae..9251d9a0 100644
--- a/native/src/widget/checkbox.rs
+++ b/native/src/widget/checkbox.rs
@@ -14,7 +14,7 @@ use crate::{
///
/// ```
/// # use iced_native::Checkbox;
-///
+/// #
/// pub enum Message {
/// CheckboxToggled(bool),
/// }