diff --git a/plugins/examples/byo_gui_gl/src/lib.rs b/plugins/examples/byo_gui_gl/src/lib.rs index 5f1eb932..73596bfb 100644 --- a/plugins/examples/byo_gui_gl/src/lib.rs +++ b/plugins/examples/byo_gui_gl/src/lib.rs @@ -325,7 +325,7 @@ impl Editor for CustomGlEditor { } } -/// The window handle used for [`EguiEditor`]. +/// The window handle used for [`CustomGlEditor`]. struct CustomGlEditorHandle { state: Arc, window: WindowHandle, diff --git a/plugins/examples/byo_gui_softbuffer/src/lib.rs b/plugins/examples/byo_gui_softbuffer/src/lib.rs index 2d65108d..3054168b 100644 --- a/plugins/examples/byo_gui_softbuffer/src/lib.rs +++ b/plugins/examples/byo_gui_softbuffer/src/lib.rs @@ -249,7 +249,7 @@ impl Editor for CustomSoftbufferEditor { } } -/// The window handle used for [`EguiEditor`]. +/// The window handle used for [`CustomSoftbufferEditor`]. struct CustomSoftbufferEditorHandle { state: Arc, window: WindowHandle, diff --git a/plugins/examples/byo_gui_wgpu/src/lib.rs b/plugins/examples/byo_gui_wgpu/src/lib.rs index 0c533323..c324c36b 100644 --- a/plugins/examples/byo_gui_wgpu/src/lib.rs +++ b/plugins/examples/byo_gui_wgpu/src/lib.rs @@ -368,7 +368,7 @@ impl Editor for CustomWgpuEditor { } } -/// The window handle used for [`EguiEditor`]. +/// The window handle used for [`CustomWgpuEditor`]. struct CustomWgpuEditorHandle { state: Arc, window: WindowHandle,