Skip to content

Commit 771c140

Browse files
committed
Formatting changes
1 parent 5816fc0 commit 771c140

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Sources/SwiftCrossUI/Views/ForEach.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ extension ForEach where Items == [Int] {
2828
self.elements = Array(range)
2929
self.child = child
3030
}
31-
31+
3232
/// Creates a view that creates child views on demand based on a given Range
3333
@_disfavoredOverload
3434
public init(

Sources/SwiftCrossUI/Views/Modifiers/TextSelectionModifier.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
extension View {
2-
/// Set selectability of contained text.
3-
/// ignored on tvOS
2+
/// Set selectability of contained text. Ignored on tvOS.
43
public func textSelectionEnabled(_ isEnabled: Bool = true) -> some View {
54
EnvironmentModifier(
65
self,

Sources/UIKitBackend/UIKitBackend+Control.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ final class TappableWidget: ContainerWidget {
214214
}
215215
}
216216
#endif
217+
217218
@available(tvOS, unavailable)
218219
final class SliderWidget: WrapperWidget<UISlider> {
219220
var onChange: ((Double) -> Void)?

0 commit comments

Comments
 (0)