aboutsummaryrefslogtreecommitdiff
path: root/src/modules/helpers
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2024-02-19 20:32:33 +0100
committerGitHub <[email protected]>2024-02-19 20:32:33 +0100
commit25f2a0326b1103c8a47a06156d43d71d2d72b7fa (patch)
treeee5e7939a56a187f063d02998334706a1a5aa5e3 /src/modules/helpers
parentaccf42c636b7ecea220676b7bc5dd2822bc97ed2 (diff)
downloadfaker-25f2a0326b1103c8a47a06156d43d71d2d72b7fa.tar.xz
faker-25f2a0326b1103c8a47a06156d43d71d2d72b7fa.zip
docs: more jsdoc fixes (#2668)
Diffstat (limited to 'src/modules/helpers')
-rw-r--r--src/modules/helpers/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/helpers/index.ts b/src/modules/helpers/index.ts
index bd905740..36f050e8 100644
--- a/src/modules/helpers/index.ts
+++ b/src/modules/helpers/index.ts
@@ -1343,7 +1343,7 @@ export class HelpersModule extends SimpleHelpersModule {
* faker.helpers.fake('{{person.lastName}}, {{person.firstName}} {{person.suffix}}') // 'Durgan, Noe MD'
* faker.helpers.fake('This is static test.') // 'This is static test.'
* faker.helpers.fake('Good Morning {{person.firstName}}!') // 'Good Morning Estelle!'
- * faker.helpers.fake('You can call me at {{phone.number(!## ### #####!)}}.') // 'You can call me at 202 555 973722.'
+ * faker.helpers.fake('You can visit me at {{location.streetAddress(true)}}.') // 'You can visit me at 3393 Ronny Way Apt. 742.'
* faker.helpers.fake('I flipped the coin and got: {{helpers.arrayElement(["heads", "tails"])}}') // 'I flipped the coin and got: tails'
* faker.helpers.fake('Your PIN number is: {{string.numeric(4, {"exclude": ["0"]})}}') // 'Your PIN number is: 4834'
*