Skip to content

Commit

Permalink
chore: improve parameter naming of internet module (#3317)
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT authored Dec 11, 2024
1 parent 8b2976f commit 4b4bac3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/internet/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down

0 comments on commit 4b4bac3

Please sign in to comment.