summaryrefslogtreecommitdiffstats
path: root/winit
diff options
context:
space:
mode:
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.
///