From 522cfb576781278bd6d1b7015dba44529cdcd7ed Mon Sep 17 00:00:00 2001 From: Konkitoman Date: Tue, 7 Nov 2023 12:15:57 +0200 Subject: [PATCH] Fix docs --- crates/egui/src/context.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/egui/src/context.rs b/crates/egui/src/context.rs index 90e3d7cdca6..9c4efaa1269 100644 --- a/crates/egui/src/context.rs +++ b/crates/egui/src/context.rs @@ -2526,7 +2526,7 @@ impl Context { } /// If `true`, [`Self::create_viewport_async`] and [`Self::create_viewport_sync`] will - /// embed the new viewports as [`egui::Window`]s instead of spawning a new native window. + /// embed the new viewports as [`crate::Window`]s instead of spawning a new native window. /// /// `eframe` sets this to `false` on supported platforms, /// but the default value is `true`. @@ -2535,7 +2535,7 @@ impl Context { } /// If `true`, [`Self::create_viewport_async`] and [`Self::create_viewport_sync`] will - /// embed the new viewports as [`egui::Window`]s instead of spawning a new native window. + /// embed the new viewports as [`crate::Window`]s instead of spawning a new native window. /// /// `eframe` sets this to `false` on supported platforms, /// but the default value is `true`.