Skip to content

Commit

Permalink
Run swift-format
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis authored and github-actions[bot] committed Jun 15, 2022
1 parent 75ad98c commit 7191be7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sources/SwiftUINavigation/IfCaseLet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7191be7

Please sign in to comment.