Merge pull request #1121 from Imberflur/fix-some-doc-links

Fix a few doc links
This commit is contained in:
Héctor Ramón 2021-11-21 15:16:31 +07:00 committed by GitHub
commit e2ec824678
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -52,6 +52,8 @@ pub struct Settings<Flags> {
/// window to close (e.g. the user presses the close button). /// window to close (e.g. the user presses the close button).
/// ///
/// By default, it is enabled. /// By default, it is enabled.
///
/// [`Application`]: crate::Application
pub exit_on_close_request: bool, pub exit_on_close_request: bool,
} }

View file

@ -22,7 +22,7 @@ use std::mem::ManuallyDrop;
/// An interactive, native cross-platform application. /// An interactive, native cross-platform application.
/// ///
/// This trait is the main entrypoint of Iced. Once implemented, you can run /// This trait is the main entrypoint of Iced. Once implemented, you can run
/// your GUI application by simply calling [`run`](#method.run). It will run in /// your GUI application by simply calling [`run`]. It will run in
/// its own window. /// its own window.
/// ///
/// An [`Application`] can execute asynchronous actions by returning a /// An [`Application`] can execute asynchronous actions by returning a