Clarify that rocket::launch doesn't return on success.

This commit is contained in:
Sergio Benitez 2017-03-16 00:51:28 -07:00
parent 65da988962
commit ec92046d3a
1 changed files with 2 additions and 1 deletions

View File

@ -528,7 +528,8 @@ impl Rocket {
}
/// Starts the application server and begins listening for and dispatching
/// requests to mounted routes and catchers.
/// requests to mounted routes and catchers. Unless there is an error, this
/// function does not return and blocks until program termination.
///
/// # Error
///