aboutsummaryrefslogtreecommitdiff
path: root/src/modules/database
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/database
parente0e9ae8e9f41bb93ec02a37345129e24ccf58c9d (diff)
downloadfaker-8f741bd4bda455517fd048b83d76bd8e6d89d78e.tar.xz
faker-8f741bd4bda455517fd048b83d76bd8e6d89d78e.zip
docs: switch doc links to stable (#2152)
Diffstat (limited to 'src/modules/database')
-rw-r--r--src/modules/database/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/database/index.ts b/src/modules/database/index.ts
index 5f497721..ced5a3ef 100644
--- a/src/modules/database/index.ts
+++ b/src/modules/database/index.ts
@@ -5,9 +5,9 @@ import type { Faker } from '../..';
*
* ### Overview
*
- * Traditional relational database tables have data organized in columns with specific types - [`column()`](https://next.fakerjs.dev/api/database.html#column), [`type()`](https://next.fakerjs.dev/api/database.html#type). The database usually has an [`engine()`](https://next.fakerjs.dev/api/database.html#engine) and a default [`collation()`](https://next.fakerjs.dev/api/database.html#collation) for sorting.
+ * Traditional relational database tables have data organized in columns with specific types - [`column()`](https://fakerjs.dev/api/database.html#column), [`type()`](https://fakerjs.dev/api/database.html#type). The database usually has an [`engine()`](https://fakerjs.dev/api/database.html#engine) and a default [`collation()`](https://fakerjs.dev/api/database.html#collation) for sorting.
*
- * For the NoSQL database MongoDB, [`mongodbObjectId()`](https://next.fakerjs.dev/api/database.html#mongodbobjectid) provides a random ID.
+ * For the NoSQL database MongoDB, [`mongodbObjectId()`](https://fakerjs.dev/api/database.html#mongodbobjectid) provides a random ID.
*/
export class DatabaseModule {
constructor(private readonly faker: Faker) {