From de9a98edd2a3c97821f93e261f654fd69ce60de2 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Wed, 6 Feb 2019 17:18:11 -0800 Subject: [PATCH] Update 'Rocket::custom()' docs to match signature. Resolves #910. --- core/lib/src/rocket.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/lib/src/rocket.rs b/core/lib/src/rocket.rs index ad0bb80c..d2fbfee6 100644 --- a/core/lib/src/rocket.rs +++ b/core/lib/src/rocket.rs @@ -355,9 +355,8 @@ impl Rocket { } /// Creates a new `Rocket` application using the supplied custom - /// configuration information. The `Rocket.toml` file, if present, is - /// ignored. Any environment variables setting config parameters are - /// ignored. If `log` is `true`, logging is enabled. + /// configuration. The `Rocket.toml` file, if present, is ignored. Any + /// environment variables setting config parameters are ignored. /// /// This method is typically called through the `rocket::custom` alias. ///