From ab0d767f3a5a57e2bbb97d0183c2ef63c8c77a6c Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 20 Mar 2018 20:42:08 +0700 Subject: [PATCH] docs: Refer to macOS rather than OSX. --- src/app/mod.rs | 8 ++++---- src/app/settings.rs | 8 ++++---- src/errors.rs | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/mod.rs b/src/app/mod.rs index c4fd69db28b..0b3737c438d 100644 --- a/src/app/mod.rs +++ b/src/app/mod.rs @@ -704,7 +704,7 @@ impl<'a, 'b> App<'a, 'b> { /// Sets the terminal width at which to wrap help messages. Defaults to `120`. Using `0` will /// ignore terminal widths and use source formatting. /// - /// `clap` automatically tries to determine the terminal width on Unix, Linux, OSX and Windows + /// `clap` automatically tries to determine the terminal width on Unix, Linux, macOS and Windows /// if the `wrap_help` cargo "feature" has been used while compiling. If the terminal width /// cannot be determined, `clap` defaults to `120`. /// @@ -714,7 +714,7 @@ impl<'a, 'b> App<'a, 'b> { /// /// # Platform Specific /// - /// Only Unix, Linux, OSX and Windows support automatic determination of terminal width. + /// Only Unix, Linux, macOS and Windows support automatic determination of terminal width. /// Even on those platforms, this setting is useful if for any reason the terminal width /// cannot be determined. /// @@ -734,7 +734,7 @@ impl<'a, 'b> App<'a, 'b> { /// Sets the max terminal width at which to wrap help messages. Using `0` will ignore terminal /// widths and use source formatting. /// - /// `clap` automatically tries to determine the terminal width on Unix, Linux, OSX and Windows + /// `clap` automatically tries to determine the terminal width on Unix, Linux, macOS and Windows /// if the `wrap_help` cargo "feature" has been used while compiling, but one might want to /// limit the size (e.g. when the terminal is running fullscreen). /// @@ -744,7 +744,7 @@ impl<'a, 'b> App<'a, 'b> { /// /// # Platform Specific /// - /// Only Unix, Linux, OSX and Windows support automatic determination of terminal width. + /// Only Unix, Linux, macOS and Windows support automatic determination of terminal width. /// /// # Examples /// diff --git a/src/app/settings.rs b/src/app/settings.rs index e676b7b82d9..e8523210297 100644 --- a/src/app/settings.rs +++ b/src/app/settings.rs @@ -412,7 +412,7 @@ pub enum AppSettings { /// /// # Platform Specific /// - /// This setting only applies to Unix, Linux, and OSX (i.e. non-Windows platforms) + /// This setting only applies to Unix, Linux, and macOS (i.e. non-Windows platforms) /// /// # Examples /// @@ -432,7 +432,7 @@ pub enum AppSettings { /// /// # Platform Specific /// - /// This setting only applies to Unix, Linux, and OSX (i.e. non-Windows platforms). + /// This setting only applies to Unix, Linux, and macOS (i.e. non-Windows platforms). /// /// # Examples /// @@ -450,7 +450,7 @@ pub enum AppSettings { /// /// # Platform Specific /// - /// This setting only applies to Unix, Linux, and OSX (i.e. non-Windows platforms). + /// This setting only applies to Unix, Linux, and macOS (i.e. non-Windows platforms). /// /// # Examples /// @@ -468,7 +468,7 @@ pub enum AppSettings { /// /// # Platform Specific /// - /// This setting only applies to Unix, Linux, and OSX (i.e. non-Windows platforms) + /// This setting only applies to Unix, Linux, and macOS (i.e. non-Windows platforms) /// /// # Examples /// diff --git a/src/errors.rs b/src/errors.rs index 84a00fd14e9..c6367bf4ad2 100644 --- a/src/errors.rs +++ b/src/errors.rs @@ -297,7 +297,7 @@ pub enum ErrorKind { /// /// # Platform Specific /// - /// Non-Windows platforms only (such as Linux, Unix, OSX, etc.) + /// Non-Windows platforms only (such as Linux, Unix, macOS, etc.) /// /// # Examples ///