diff --git a/imgui/src/lib.rs b/imgui/src/lib.rs index 9487238..7eb289f 100644 --- a/imgui/src/lib.rs +++ b/imgui/src/lib.rs @@ -202,7 +202,7 @@ impl Ui { /// This function right now simply **ends** the current frame, but does not /// return draw data. If you want to end the frame without generated draw data, /// and thus save some CPU time, use [`end_frame_early`]. - /// + /// /// [`end_frame_early`]: Self::end_frame_early #[deprecated( since = "0.9.0", @@ -570,7 +570,7 @@ impl<'ui> Ui { InputScalar::new(self, label, value) } /// Shows a horizontal array of scalar value input fields. See [`input_scalar`]. - /// + /// /// [`input_scalar`]: Self::input_scalar #[doc(alias = "InputScalarN")] pub fn input_scalar_n<'p, L, T>( diff --git a/imgui/src/widget/menu.rs b/imgui/src/widget/menu.rs index 61c70ff..b273c86 100644 --- a/imgui/src/widget/menu.rs +++ b/imgui/src/widget/menu.rs @@ -125,7 +125,7 @@ impl Ui { /// for simple Menu Items with no features on them. /// /// Note: a `menu_item` is the actual button/selectable within a Menu. - /// + /// /// [`menu_item`]: Self::menu_item #[doc(alias = "MenuItem")] pub fn menu_item_config>(&self, label: L) -> MenuItem<'_, L> {