Fix typo in 'State' documentation: missing backtick.

This commit is contained in:
Thiago Veronezi 2020-03-31 09:01:00 -04:00 committed by Jeb Rosen
parent 3abafaaedb
commit 94a222f6fe
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ use crate::http::Status;
/// registered to be managed by Rocket via /// registered to be managed by Rocket via
/// [`Rocket::manage()`]. The type being managed must be /// [`Rocket::manage()`]. The type being managed must be
/// thread safe and sendable across thread boundaries. In other words, it must /// thread safe and sendable across thread boundaries. In other words, it must
/// implement [`Send`] + [`Sync`] + 'static`. /// implement [`Send`] + [`Sync`] + `'static`.
/// ///
/// # Example /// # Example
/// ///