Skip to content

Commit fa7d609

Browse files
authored
Fix lint errors
1 parent b16a2f3 commit fa7d609

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

Sources/Inspect/Inspect.swift

+11-1
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,30 @@ import SwiftUI
1616

1717
// MARK: - Platform Definitions
1818
#if os(macOS)
19-
/// Current platform's view type
19+
/// Current platform's view
2020
public typealias PlatformView = NSView
21+
/// Current platform's view representable
2122
public typealias PlatformViewRepresentable = NSViewRepresentable
23+
/// Current platform's view representable context
2224
public typealias PlatformViewRepresentableContext = NSViewRepresentableContext
25+
/// Current platform's view controller
2326
public typealias PlatformViewController = NSViewController
27+
/// Current platform's view controller representable
2428
public typealias PlatformVCRepresentable = NSViewControllerRepresentable
29+
/// Current platform's view controller representable context
2530
public typealias PlatformVCRepresentableContext = NSViewControllerRepresentableContext
2631
#else
2732
/// Current platform's view type
2833
public typealias PlatformView = UIView
34+
/// Current platform's view representable
2935
public typealias PlatformViewRepresentable = UIViewRepresentable
36+
/// Current platform's view representable context
3037
public typealias PlatformViewRepresentableContext = UIViewRepresentableContext
38+
/// Current platform's view controller
3139
public typealias PlatformViewController = UIViewController
40+
/// Current platform's view controller representable
3241
public typealias PlatformVCRepresentable = UIViewControllerRepresentable
42+
/// Current platform's view controller representable context
3343
public typealias PlatformVCRepresentableContext = UIViewControllerRepresentableContext
3444
#endif
3545

0 commit comments

Comments
 (0)