From f54d913bd372f98cd6d5e847dad777a22071c49e Mon Sep 17 00:00:00 2001 From: Vasili Date: Fri, 11 Jun 2021 10:22:26 +0300 Subject: [PATCH] Fix typo in configuration guide: 'it's' -> 'its'. --- site/guide/9-configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/guide/9-configuration.md b/site/guide/9-configuration.md index f7cfa25e..c8d0d8c9 100644 --- a/site/guide/9-configuration.md +++ b/site/guide/9-configuration.md @@ -392,7 +392,7 @@ fn rocket() -> _ { } ``` -Rocket will extract it's configuration from the configured provider. This means +Rocket will extract its configuration from the configured provider. This means that if values like `port` and `address` are configured in `Config`, `App.toml` or `APP_` environment variables, Rocket will make use of them. The application can also extract its configuration, done here via the `Adhoc::config()` fairing.