Skip to content

Commit

Permalink
Fix documented .paywall(isPresented:) parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeehut committed Jul 16, 2024
1 parent 13e10f4 commit a49c695
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/FreemiumKit/FreemiumKit.docc/SetupGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Learn how to set up your app for our paywalls and live push notifications.
Button("Unlock Pro") {
self.showPaywall = true
}
.paywall(isPresent: self.$showPaywall)
.paywall(isPresented: self.$showPaywall)
}
}
```
Expand All @@ -103,7 +103,7 @@ Learn how to set up your app for our paywalls and live push notifications.
Button("Unlock Pro") {
self.showPaywall = true
}
.paywall(isPresent: self.$showPaywall)
.paywall(isPresented: self.$showPaywall)
}
}
}
Expand Down

0 comments on commit a49c695

Please sign in to comment.