diff options
author | 2023-03-05 04:19:31 +0100 | |
---|---|---|
committer | 2023-03-05 04:19:31 +0100 | |
commit | cfb8abb6f5806e08ccc3a80233e1fb1768adeaf7 (patch) | |
tree | edd9043cdf5af4c9d9393e14b91641ba0ea5f5d4 /widget/src/radio.rs | |
parent | f4cf488e0b083b5d7b7612c650917233163ee9cb (diff) | |
download | iced-cfb8abb6f5806e08ccc3a80233e1fb1768adeaf7.tar.gz iced-cfb8abb6f5806e08ccc3a80233e1fb1768adeaf7.tar.bz2 iced-cfb8abb6f5806e08ccc3a80233e1fb1768adeaf7.zip |
Use `no_run` for widget doc-tests
Diffstat (limited to 'widget/src/radio.rs')
-rw-r--r-- | widget/src/radio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widget/src/radio.rs b/widget/src/radio.rs index e5c67f3d..c2b6b017 100644 --- a/widget/src/radio.rs +++ b/widget/src/radio.rs @@ -18,7 +18,7 @@ pub use iced_style::radio::{Appearance, StyleSheet}; /// A circular button representing a choice. /// /// # Example -/// ``` +/// ```no_run /// # type Radio<Message> = /// # iced_widget::Radio<Message, iced_widget::renderer::Renderer<iced_widget::style::Theme>>; /// # |