@@ -114,17 +114,17 @@ pub enum RawWindowHandle {
114114 /// A raw window handle for UIKit (Apple's non-macOS windowing library).
115115 ///
116116 /// ## Availability Hints
117- /// This variant is likely to be used on iOS, tvOS, (in theory) watchOS, and
118- /// Mac Catalyst (`$arch-apple-ios-macabi` targets, which can notably use
119- /// UIKit *or* AppKit), as these are the targets that (currently) support
120- /// UIKit.
117+ /// This variant is used on iOS, tvOS, watchOS, visionOS, and Mac
118+ /// Catalyst, as these are the targets that (currently) support UIKit.
119+ ///
120+ /// Note that Mac Catalyst (`$arch-apple-ios-macabi` targets), can use
121+ /// UIKit *or* AppKit.
121122 UiKit ( UiKitWindowHandle ) ,
122123 /// A raw window handle for AppKit.
123124 ///
124125 /// ## Availability Hints
125- /// This variant is likely to be used on macOS, although Mac Catalyst
126- /// (`$arch-apple-ios-macabi` targets, which can notably use UIKit *or*
127- /// AppKit) can also use it despite being `target_os = "ios"`.
126+ /// This variant is used on macOS, although Mac Catalyst can also use it
127+ /// despite being `target_os = "ios"`.
128128 AppKit ( AppKitWindowHandle ) ,
129129 /// A raw window handle for the Redox operating system.
130130 ///
@@ -267,17 +267,17 @@ pub enum RawDisplayHandle {
267267 /// A raw display handle for UIKit (Apple's non-macOS windowing library).
268268 ///
269269 /// ## Availability Hints
270- /// This variant is likely to be used on iOS, tvOS, (in theory) watchOS, and
271- /// Mac Catalyst (`$arch-apple-ios-macabi` targets, which can notably use
272- /// UIKit *or* AppKit), as these are the targets that (currently) support
273- /// UIKit.
270+ /// This variant is used on iOS, tvOS, watchOS, visionOS, and Mac
271+ /// Catalyst, as these are the targets that (currently) support UIKit.
272+ ///
273+ /// Note that Mac Catalyst (`$arch-apple-ios-macabi` targets), can use
274+ /// UIKit *or* AppKit.
274275 UiKit ( UiKitDisplayHandle ) ,
275276 /// A raw display handle for AppKit.
276277 ///
277278 /// ## Availability Hints
278- /// This variant is likely to be used on macOS, although Mac Catalyst
279- /// (`$arch-apple-ios-macabi` targets, which can notably use UIKit *or*
280- /// AppKit) can also use it despite being `target_os = "ios"`.
279+ /// This variant is used on macOS, although Mac Catalyst can also use it
280+ /// despite being `target_os = "ios"`.
281281 AppKit ( AppKitDisplayHandle ) ,
282282 /// A raw display handle for the Redox operating system.
283283 ///
0 commit comments