From c17cc9d23f76181543d74bf48b49ac5b2d524103 Mon Sep 17 00:00:00 2001 From: Dimitri Sabadie Date: Mon, 9 May 2022 09:42:59 +0200 Subject: [PATCH] Fix typo in 'Rocket' docs: iterior -> interior. --- core/lib/src/rocket.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/src/rocket.rs b/core/lib/src/rocket.rs index 338c8a7b..a48d2989 100644 --- a/core/lib/src/rocket.rs +++ b/core/lib/src/rocket.rs @@ -42,7 +42,7 @@ use crate::log::PaintExt; /// * **Ignite**: _verification and finalization of configuration_ /// /// An instance in the [`Ignite`] phase is in its final configuration, -/// available via [`Rocket::config()`]. Barring user-supplied iterior +/// available via [`Rocket::config()`]. Barring user-supplied interior /// mutation, application state is guaranteed to remain unchanged beyond this /// point. An instance in the ignite phase can be launched into orbit to serve /// requests via [`Rocket::launch()`].