aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2024-12-11 20:28:06 +0100
committerGitHub <[email protected]>2024-12-11 20:28:06 +0100
commit4b4bac373c0cf22efff343261c6e9abe458f5ccd (patch)
tree7a05ad0013cba666aa644c6dceda625be2bcff02 /src
parent8b2976f3479db445a2a7b66606110009495478f4 (diff)
downloadfaker-4b4bac373c0cf22efff343261c6e9abe458f5ccd.tar.xz
faker-4b4bac373c0cf22efff343261c6e9abe458f5ccd.zip
chore: improve parameter naming of internet module (#3317)
Diffstat (limited to 'src')
-rw-r--r--src/modules/internet/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/internet/index.ts b/src/modules/internet/index.ts
index 115bb8a8..3cdf2a36 100644
--- a/src/modules/internet/index.ts
+++ b/src/modules/internet/index.ts
@@ -876,14 +876,14 @@ export class InternetModule extends ModuleBase {
/**
* Generates a random mac address.
*
- * @param sep The optional separator to use. Can be either `':'`, `'-'` or `''`. Defaults to `':'`.
+ * @param separator The optional separator to use. Can be either `':'`, `'-'` or `''`. Defaults to `':'`.
*
* @example
* faker.internet.mac() // '32:8e:2e:09:c6:05'
*
* @since 3.0.0
*/
- mac(sep?: string): string;
+ mac(separator?: string): string;
/**
* Generates a random mac address.
*