Skip to content

Commit

Permalink
add missing commas (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
zntfdr authored Oct 7, 2020
1 parent 1522a09 commit 94829d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Documentation/FloatingPanel 2.0 Migration Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ class MyPanelIntrinsicLayout: FloatingPanelLayout {
var initialState: FloatingPanelState { .full }
var anchors: [FloatingPanelState : FloatingPanelLayoutAnchoring] {
return [
.full: FloatingPanelIntrinsicLayoutAnchor(absoluteOffset: 16.0, referenceGuide: .safeArea)
.half: FloatingPanelIntrinsicLayoutAnchor(fractionalOffset: 0.5, referenceGuide: .safeArea)
.full: FloatingPanelIntrinsicLayoutAnchor(absoluteOffset: 16.0, referenceGuide: .safeArea),
.half: FloatingPanelIntrinsicLayoutAnchor(fractionalOffset: 0.5, referenceGuide: .safeArea),
.tip: FloatingPanelLayoutAnchor(absoluteInset: 44.0, edge: .bottom, referenceGuide: .safeArea)
]
}
Expand Down

0 comments on commit 94829d2

Please sign in to comment.