Clarify behavior of 'Rocket::attach()'.

This commit is contained in:
Sergio Benitez 2018-07-02 18:18:41 -07:00
parent 0079e738e8
commit ce8817dd3c
1 changed files with 3 additions and 1 deletions

View File

@ -601,7 +601,9 @@ impl Rocket {
self
}
/// Attaches a fairing to this instance of Rocket.
/// Attaches a fairing to this instance of Rocket. If the fairing is an
/// _attach_ fairing, it is run immediately. All other kinds of fairings
/// will be executed at their appropriate time.
///
/// # Example
///