Skip to content

Commit

Permalink
docs: Refer to macOS rather than OSX.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Mar 20, 2018
1 parent 07c15d2 commit ab0d767
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions src/app/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
///
Expand All @@ -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.
///
Expand All @@ -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).
///
Expand All @@ -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
///
Expand Down
8 changes: 4 additions & 4 deletions src/app/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
///
Expand All @@ -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
///
Expand All @@ -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
///
Expand All @@ -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
///
Expand Down
2 changes: 1 addition & 1 deletion src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
///
Expand Down

0 comments on commit ab0d767

Please sign in to comment.