Fix typo in 'State' documentation: missing backtick.

This commit is contained in:
Thiago Veronezi 2020-03-31 09:01:00 -04:00 committed by Sergio Benitez
parent d265ca70bf
commit 3d31dad760
1 changed files with 1 additions and 1 deletions

View File

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