Skip to content

Commit

Permalink
Add the missing commas in the documentation example
Browse files Browse the repository at this point in the history
  • Loading branch information
richherrera committed Oct 23, 2024
1 parent 7f6c766 commit bc42546
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions V7_MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ v7 updates `BTCard` to require setting all properties through the initializer, r

```
let card = BTCard(
number = "4111111111111111"
expirationMonth = "12"
expirationYear = "2025"
number = "4111111111111111",
expirationMonth = "12",
expirationYear = "2025",
cvv = "123"
)
```
Expand Down

0 comments on commit bc42546

Please sign in to comment.