From cac844243f63249b5c2db7fa7914bb02a345b08b Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Wed, 6 Sep 2023 02:06:08 +0700 Subject: [PATCH] Refer to "macOS", not "macOS X". (#9704) # Objective - Refer to OSes by their correct name. ## Solution - Do so. --- crates/bevy_window/src/window.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_window/src/window.rs b/crates/bevy_window/src/window.rs index 0eb84b555d..10bdd8fe8b 100644 --- a/crates/bevy_window/src/window.rs +++ b/crates/bevy_window/src/window.rs @@ -149,9 +149,9 @@ pub struct Window { /// /// ## Platform-specific /// - iOS / Android / Web: Unsupported. - /// - macOS X: Not working as expected. + /// - macOS: Not working as expected. /// - /// macOS X transparent works with winit out of the box, so this issue might be related to: . + /// macOS transparent works with winit out of the box, so this issue might be related to: . /// You should also set the window `composite_alpha_mode` to `CompositeAlphaMode::PostMultiplied`. pub transparent: bool, /// Get/set whether the window is focused.