From db31881be5d60b2350d51ed08ce2df41cf0affc0 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Fri, 30 Sep 2022 13:17:42 -0500 Subject: [PATCH] docs: Remove references to global settings These were copied over from the original `AppSettings` and never updated despite never being relevant in this context. --- src/builder/command.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/builder/command.rs b/src/builder/command.rs index 7efb75db..2c8898af 100644 --- a/src/builder/command.rs +++ b/src/builder/command.rs @@ -946,9 +946,6 @@ impl Command { /// Try not to fail on parse errors, like missing option values. /// - /// **Note:** Make sure you apply it as `global_setting` if you want this setting - /// to be propagated to subcommands and sub-subcommands! - /// /// **NOTE:** This choice is propagated to all child subcommands. /// /// # Examples @@ -1132,9 +1129,6 @@ impl Command { /// /// Defaults to `false`; subcommands have independent version strings from their parents. /// - /// **Note:** Make sure you apply it as `global_setting` if you want this setting - /// to be propagated to subcommands and sub-subcommands! - /// /// **NOTE:** This choice is propagated to all child subcommands. /// /// # Examples @@ -2841,9 +2835,6 @@ impl Command { /// values subcommand /// ``` /// - /// **Note:** Make sure you apply it as `global_setting` if you want this setting - /// to be propagated to subcommands and sub-subcommands! - /// /// # Examples /// /// ```rust