diff options
| author | Guilherme Minozzi <[email protected]> | 2022-07-22 00:04:44 -0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-07-22 05:04:44 +0200 |
| commit | 3afc793f5b54fe3095d66f4e95af81e3e5a428d9 (patch) | |
| tree | cbd06a1e3a7cecdc5e4fbb06cb51a3915dd0f474 /src/modules/finance | |
| parent | fbddaa39e830e1ac44e7821d219ca7859af79e95 (diff) | |
| download | faker-3afc793f5b54fe3095d66f4e95af81e3e5a428d9.tar.xz faker-3afc793f5b54fe3095d66f4e95af81e3e5a428d9.zip | |
refactor(company): rename companyName to name (#1166)
Diffstat (limited to 'src/modules/finance')
| -rw-r--r-- | src/modules/finance/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/finance/index.ts b/src/modules/finance/index.ts index ff9ffc68..5d83963b 100644 --- a/src/modules/finance/index.ts +++ b/src/modules/finance/index.ts @@ -424,7 +424,7 @@ export class Finance { */ transactionDescription(): string { const amount = this.amount(); - const company = this.faker.company.companyName(); + const company = this.faker.company.name(); const transactionType = this.transactionType(); const account = this.account(); const card = this.mask(); |
