Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fatihbaltaci committed Jun 6, 2022
1 parent a4002ec commit 4528fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion faker/faker.go
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ func (f Faker) RandomTransactionType() string {
return BankTransactionTypes[f.Generator.Intn(len(BankTransactionTypes))]
}

func (f Faker) RandomCreaditCardMask() string {
func (f Faker) RandomCreditCardMask() string {
return strconv.Itoa(f.Generator.Intn(9999-1000) + 1000)
}

Expand Down

0 comments on commit 4528fb5

Please sign in to comment.