From 505f2be023bdf95399c00c96a30986b72f0a4f90 Mon Sep 17 00:00:00 2001 From: dbr Date: Wed, 2 Jun 2021 14:07:30 +1000 Subject: [PATCH] Fix up doc tests --- imgui/src/widget/slider.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/imgui/src/widget/slider.rs b/imgui/src/widget/slider.rs index 13a073c..314eb76 100644 --- a/imgui/src/widget/slider.rs +++ b/imgui/src/widget/slider.rs @@ -54,15 +54,21 @@ impl<'a, T: DataTypeKind> Slider<'a, T> { /// For example, to set both the min and max values: /// /// ```rust + /// # use imgui::im_str; /// imgui::Slider::new(im_str!("Example")) /// .range(1 ..= 10) + /// // Remember to call .build(&ui) + /// ; /// ``` /// /// To set only the max value, using the default minimum value: /// /// ```rust + /// # use imgui::im_str; /// imgui::Slider::new(im_str!("Example")) /// .range(..= 10) + /// // Remember to call .build(&ui) + /// ; /// ``` #[inline] pub fn range>(mut self, range: R) -> Self {