From 92958e49ad4ef57952f33b28e3c34d35fb81161b Mon Sep 17 00:00:00 2001 From: 13r0ck Date: Wed, 7 Sep 2022 14:43:24 -0600 Subject: Update docs for renamed integration examples The integration examples were renamed in 77a0b68aa176782e95048795aec15c20a3e60ec6 , this just updates the docs to point to the updates links. --- native/src/user_interface.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'native') diff --git a/native/src/user_interface.rs b/native/src/user_interface.rs index 4bcf1e0c..344ba4d6 100644 --- a/native/src/user_interface.rs +++ b/native/src/user_interface.rs @@ -15,10 +15,11 @@ use crate::{Clipboard, Element, Layout, Point, Rectangle, Shell, Size}; /// charge of using this type in your system in any way you want. /// /// # Example -/// The [`integration` example] uses a [`UserInterface`] to integrate Iced in -/// an existing graphical application. +/// The [`integration_opengl`] & [`integration_wgpu`] examples use a +/// [`UserInterface`] to integrate Iced in an existing graphical application. /// -/// [`integration` example]: https://github.com/iced-rs/iced/tree/0.4/examples/integration +/// [`integration_opengl`]: https://github.com/iced-rs/iced/tree/0.4/examples/integration_opengl +/// [`integration_wgpu`]: https://github.com/iced-rs/iced/tree/0.4/examples/integration_wgpu #[allow(missing_debug_implementations)] pub struct UserInterface<'a, Message, Renderer> { root: Element<'a, Message, Renderer>, -- cgit