Clarify return policy of Application::run

This commit is contained in:
Héctor Ramón Jiménez 2020-04-01 00:25:33 +02:00
parent c73f23c380
commit 26a35b7d7e
3 changed files with 8 additions and 8 deletions

View file

@ -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.
///