Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
readme: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dimboknv committed Apr 16, 2022
1 parent 28c7c41 commit 9b70549
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ func main() {
fmt.Println(statements)

// get merchant card balance for "1234567891234567" card number
cardBalace, err := client.GetCardBalance(ctx, p24.BalanceOpts{
cardBalance, err := client.GetCardBalance(ctx, p24.BalanceOpts{
CardNumber: "1234567891234567",
Country: "UA",
})
if err != nil {
log.Fatal(err)
}
fmt.Println(cardBalace)
fmt.Println(cardBalance)
}
```

0 comments on commit 9b70549

Please sign in to comment.