aboutsummaryrefslogtreecommitdiff
path: root/src/modules/date
diff options
context:
space:
mode:
authorShinigami <[email protected]>2023-05-15 08:24:13 +0200
committerGitHub <[email protected]>2023-05-15 08:24:13 +0200
commit8f741bd4bda455517fd048b83d76bd8e6d89d78e (patch)
tree512783caad8d405372c29859c1edb2acd09f94d7 /src/modules/date
parente0e9ae8e9f41bb93ec02a37345129e24ccf58c9d (diff)
downloadfaker-8f741bd4bda455517fd048b83d76bd8e6d89d78e.tar.xz
faker-8f741bd4bda455517fd048b83d76bd8e6d89d78e.zip
docs: switch doc links to stable (#2152)
Diffstat (limited to 'src/modules/date')
-rw-r--r--src/modules/date/index.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/date/index.ts b/src/modules/date/index.ts
index feac3692..b50a548a 100644
--- a/src/modules/date/index.ts
+++ b/src/modules/date/index.ts
@@ -27,15 +27,15 @@ function toDate(
*
* ### Overview
*
- * To quickly generate a date in the past, use [`recent()`](https://next.fakerjs.dev/api/date.html#recent) (last day) or [`past()`](https://next.fakerjs.dev/api/date.html#past) (last year).
- * To quickly generate a date in the future, use [`soon()`](https://next.fakerjs.dev/api/date.html#soon) (next day) or [`future()`](https://next.fakerjs.dev/api/date.html#future) (next year).
- * For a realistic birthdate for an adult, use [`birthdate()`](https://next.fakerjs.dev/api/date.html#birthdate).
+ * To quickly generate a date in the past, use [`recent()`](https://fakerjs.dev/api/date.html#recent) (last day) or [`past()`](https://fakerjs.dev/api/date.html#past) (last year).
+ * To quickly generate a date in the future, use [`soon()`](https://fakerjs.dev/api/date.html#soon) (next day) or [`future()`](https://fakerjs.dev/api/date.html#future) (next year).
+ * For a realistic birthdate for an adult, use [`birthdate()`](https://fakerjs.dev/api/date.html#birthdate).
*
- * For more control, any of these methods can be customized with further options, or use [`between()`](https://next.fakerjs.dev/api/date.html#between) to generate a single date between two dates, or [`betweens()`](https://next.fakerjs.dev/api/date.html#betweens) for multiple dates.
+ * For more control, any of these methods can be customized with further options, or use [`between()`](https://fakerjs.dev/api/date.html#between) to generate a single date between two dates, or [`betweens()`](https://fakerjs.dev/api/date.html#betweens) for multiple dates.
*
- * You can generate random localized month and weekday names using [`month()`](https://next.fakerjs.dev/api/date.html#month) and [`weekday()`](https://next.fakerjs.dev/api/date.html#weekday).
+ * You can generate random localized month and weekday names using [`month()`](https://fakerjs.dev/api/date.html#month) and [`weekday()`](https://fakerjs.dev/api/date.html#weekday).
*
- * These methods have additional concerns about reproducibility, see [Reproducible Results](https://next.fakerjs.dev/guide/usage.html#reproducible-results).
+ * These methods have additional concerns about reproducibility, see [Reproducible Results](https://fakerjs.dev/guide/usage.html#reproducible-results).
*/
export class DateModule {
constructor(private readonly faker: Faker) {