diff options
author | 2022-09-08 09:11:12 +0200 | |
---|---|---|
committer | 2022-09-08 09:11:12 +0200 | |
commit | cb395abd197ef06bc79b91d184ffa52e9bd17c82 (patch) | |
tree | a64a831476fe31e668628034416b6d1a29365191 /native | |
parent | dcdbe1b0f41f25ab2a671d2ee5822685d7d6e75d (diff) | |
parent | 92958e49ad4ef57952f33b28e3c34d35fb81161b (diff) | |
download | iced-cb395abd197ef06bc79b91d184ffa52e9bd17c82.tar.gz iced-cb395abd197ef06bc79b91d184ffa52e9bd17c82.tar.bz2 iced-cb395abd197ef06bc79b91d184ffa52e9bd17c82.zip |
Merge pull request #1433 from 13r0ck/integration-docs
Update docs for renamed integration examples
Diffstat (limited to '')
-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>, |