aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.
*