diff options
author | 2020-05-28 02:57:03 +0200 | |
---|---|---|
committer | 2020-05-28 02:57:03 +0200 | |
commit | 4aa0d7a13a6fbf04e3fa24c444d562c2f1085b5b (patch) | |
tree | 03824b7e98e27a31ee7d89aa27743c351f512740 /winit | |
parent | ef28347f1c816d8ad9e772303467de489efb802b (diff) | |
download | iced-4aa0d7a13a6fbf04e3fa24c444d562c2f1085b5b.tar.gz iced-4aa0d7a13a6fbf04e3fa24c444d562c2f1085b5b.tar.bz2 iced-4aa0d7a13a6fbf04e3fa24c444d562c2f1085b5b.zip |
Write documentation for `iced_glutin`
Diffstat (limited to 'winit')
-rw-r--r-- | winit/src/application.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/winit/src/application.rs b/winit/src/application.rs index df6e4eec..73ac72b2 100644 --- a/winit/src/application.rs +++ b/winit/src/application.rs @@ -18,6 +18,8 @@ use iced_native::program::{self, Program}; /// /// When using an [`Application`] with the `debug` feature enabled, a debug view /// can be toggled by pressing `F12`. +/// +/// [`Application`]: trait.Application.html pub trait Application: Program { /// The data needed to initialize your [`Application`]. /// @@ -36,7 +38,7 @@ pub trait Application: Program { /// /// [`Application`]: trait.Application.html /// [`run`]: #method.run.html - /// [`Settings`]: struct.Settings.html + /// [`Settings`]: ../settings/struct.Settings.html fn new(flags: Self::Flags) -> (Self, Command<Self::Message>); /// Returns the current title of the [`Application`]. |