From 8e3da3ba15afa740daeabbfcc66bdfd86d6fcd6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20Moror=C3=B3?= Date: Tue, 17 Sep 2024 23:22:47 -0300 Subject: [PATCH] fix NewFrame doc alias --- imgui/src/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui/src/context.rs b/imgui/src/context.rs index e308350..e469df5 100644 --- a/imgui/src/context.rs +++ b/imgui/src/context.rs @@ -539,7 +539,7 @@ impl Context { } /// Starts a new frame and returns an `Ui` instance for constructing a user interface. - #[doc(alias = "NewFame")] + #[doc(alias = "NewFrame")] pub fn new_frame(&mut self) -> &mut Ui { // Clear default font if it no longer exists. This could be an error in the future let default_font = self.io().font_default;