diff options
author | 2019-11-24 10:44:55 +0100 | |
---|---|---|
committer | 2019-11-24 10:44:55 +0100 | |
commit | f943764a292837cbf262a4f29dc0021d808852d6 (patch) | |
tree | e49d373873f5f6414936980fd6eb13f31347be7e /native/src/widget/checkbox.rs | |
parent | 7a8a79cd37eba3ac0f1e059b6efe34cc96b2602b (diff) | |
download | iced-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.rs | 2 |
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), /// } |