summaryrefslogtreecommitdiffstats
path: root/winit
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-04-01 00:25:33 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-04-02 03:44:14 +0200
commit26a35b7d7e72ab8f685e75b0332bade1efef92d8 (patch)
tree103aaad9e4eef039bde708e1bf1ee93af3d64dd7 /winit
parentc73f23c38057a4b1af368da5ac3268de317a55fa (diff)
downloadiced-26a35b7d7e72ab8f685e75b0332bade1efef92d8.tar.gz
iced-26a35b7d7e72ab8f685e75b0332bade1efef92d8.tar.bz2
iced-26a35b7d7e72ab8f685e75b0332bade1efef92d8.zip
Clarify return policy of `Application::run`
Diffstat (limited to 'winit')
-rw-r--r--winit/src/application.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/winit/src/application.rs b/winit/src/application.rs
index d5f957bf..37682901 100644
--- a/winit/src/application.rs
+++ b/winit/src/application.rs
@@ -100,8 +100,8 @@ pub trait Application: Sized {
/// Runs the [`Application`] with the provided [`Settings`].
///
- /// This method will take control of the current thread and __will NOT
- /// return__.
+ /// On native platforms, this method will take control of the current thread
+ /// and __will NOT return__.
///
/// It should probably be that last thing you call in your `main` function.
///