diff options
author | 2022-09-07 14:43:24 -0600 | |
---|---|---|
committer | 2022-09-07 14:50:58 -0600 | |
commit | 92958e49ad4ef57952f33b28e3c34d35fb81161b (patch) | |
tree | aec085060f7de49a1060a726f75ca08437c42dea /native | |
parent | ab1ac8228f2ab9ef53303e2c5b1770eaa9a513ad (diff) | |
download | iced-92958e49ad4ef57952f33b28e3c34d35fb81161b.tar.gz iced-92958e49ad4ef57952f33b28e3c34d35fb81161b.tar.bz2 iced-92958e49ad4ef57952f33b28e3c34d35fb81161b.zip |
Update docs for renamed integration examples
The integration examples were renamed in
77a0b68aa176782e95048795aec15c20a3e60ec6 , this just updates the
docs to point to the updates links.
Diffstat (limited to 'native')
-rw-r--r-- | native/src/user_interface.rs | 7 |
1 files changed, 4 insertions, 3 deletions
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>, |