Run swift-format

This commit is contained in:
stephencelis 2022-06-15 00:43:51 +00:00 committed by github-actions[bot]
parent 75ad98cc91
commit 7191be7095
1 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,8 @@ import SwiftUI
///
/// To exhaustively handle every case of a binding to an enum, see ``Switch``. Or, to unwrap a
/// binding to an optional, see ``IfLet``.
public struct IfCaseLet<Enum, Case, IfContent, ElseContent>: View where IfContent: View, ElseContent: View {
public struct IfCaseLet<Enum, Case, IfContent, ElseContent>: View
where IfContent: View, ElseContent: View {
public let `enum`: Binding<Enum>
public let casePath: CasePath<Enum, Case>
public let ifContent: (Binding<Case>) -> IfContent