diff options
| author | Robin van der Vliet <[email protected]> | 2023-07-08 13:04:13 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-08 13:04:13 +0200 |
| commit | 5a4828264c9f27c4d4b023530fd6a893e3b8213b (patch) | |
| tree | a77125047e054674d54bf4d1ef5bde321e677e13 /src | |
| parent | a04d1839fd929a12bb8506d5c69fe0045d6b0a66 (diff) | |
| download | faker-5a4828264c9f27c4d4b023530fd6a893e3b8213b.tar.xz faker-5a4828264c9f27c4d4b023530fd6a893e3b8213b.zip | |
docs: fix jsdocs typos (#2244)
Diffstat (limited to 'src')
| -rw-r--r-- | src/definitions/color.ts | 2 | ||||
| -rw-r--r-- | src/modules/color/index.ts | 2 | ||||
| -rw-r--r-- | src/modules/date/index.ts | 2 | ||||
| -rw-r--r-- | src/modules/finance/index.ts | 14 | ||||
| -rw-r--r-- | src/modules/helpers/index.ts | 4 | ||||
| -rw-r--r-- | src/modules/internet/index.ts | 20 | ||||
| -rw-r--r-- | src/modules/location/index.ts | 20 |
7 files changed, 32 insertions, 32 deletions
diff --git a/src/definitions/color.ts b/src/definitions/color.ts index b57e93bc..b2c375a4 100644 --- a/src/definitions/color.ts +++ b/src/definitions/color.ts @@ -5,7 +5,7 @@ import type { LocaleEntry } from './definitions'; */ export type ColorDefinition = LocaleEntry<{ /** - * Human readable color names. + * Human-readable color names. */ human: string[]; diff --git a/src/modules/color/index.ts b/src/modules/color/index.ts index a3519225..9e148f04 100644 --- a/src/modules/color/index.ts +++ b/src/modules/color/index.ts @@ -185,7 +185,7 @@ export class ColorModule { } /** - * Returns a random human readable color name. + * Returns a random human-readable color name. * * @example * faker.color.human() // 'red' diff --git a/src/modules/date/index.ts b/src/modules/date/index.ts index b50a548a..f6ebd6da 100644 --- a/src/modules/date/index.ts +++ b/src/modules/date/index.ts @@ -5,7 +5,7 @@ import { deprecated } from '../../internal/deprecated'; /** * Converts date passed as a string, number or Date to a Date object. - * If nothing or a non parsable value is passed, then it will take the value from the given fallback. + * If nothing or a non-parsable value is passed, then it will take the value from the given fallback. * * @param date The date to convert. * @param fallback The fallback date to use if the passed date is not valid. diff --git a/src/modules/finance/index.ts b/src/modules/finance/index.ts index 0e00c933..cbdbad54 100644 --- a/src/modules/finance/index.ts +++ b/src/modules/finance/index.ts @@ -740,7 +740,7 @@ export class FinanceModule { /** * Generates a random credit card number. * - * @param issuer The name of the issuer (case insensitive) or the format used to generate one. + * @param issuer The name of the issuer (case-insensitive) or the format used to generate one. * * @example * faker.finance.creditCardNumber() // '4427163488662' @@ -754,7 +754,7 @@ export class FinanceModule { * Generates a random credit card number. * * @param options An options object. Defaults to `''`. - * @param options.issuer The name of the issuer (case insensitive) or the format used to generate one. + * @param options.issuer The name of the issuer (case-insensitive) or the format used to generate one. * * @example * faker.finance.creditCardNumber() // '4427163488662' @@ -765,7 +765,7 @@ export class FinanceModule { */ creditCardNumber(options?: { /** - * The name of the issuer (case insensitive) or the format used to generate one. + * The name of the issuer (case-insensitive) or the format used to generate one. * * @default '' */ @@ -775,7 +775,7 @@ export class FinanceModule { * Generates a random credit card number. * * @param options An options object, the issuer or a custom format. Defaults to `{}`. - * @param options.issuer The name of the issuer (case insensitive) or the format used to generate one. + * @param options.issuer The name of the issuer (case-insensitive) or the format used to generate one. * * @example * faker.finance.creditCardNumber() // '4427163488662' @@ -790,7 +790,7 @@ export class FinanceModule { | string | { /** - * The name of the issuer (case insensitive) or the format used to generate one. + * The name of the issuer (case-insensitive) or the format used to generate one. * * @default '' */ @@ -801,7 +801,7 @@ export class FinanceModule { * Generates a random credit card number. * * @param options An options object, the issuer or a custom format. Defaults to `{}`. - * @param options.issuer The name of the issuer (case insensitive) or the format used to generate one. + * @param options.issuer The name of the issuer (case-insensitive) or the format used to generate one. * * @example * faker.finance.creditCardNumber() // '4427163488662' @@ -816,7 +816,7 @@ export class FinanceModule { | string | { /** - * The name of the issuer (case insensitive) or the format used to generate one. + * The name of the issuer (case-insensitive) or the format used to generate one. * * @default '' */ diff --git a/src/modules/helpers/index.ts b/src/modules/helpers/index.ts index f124cec1..9ecd8103 100644 --- a/src/modules/helpers/index.ts +++ b/src/modules/helpers/index.ts @@ -257,7 +257,7 @@ export class HelpersModule { * - `.{min,max}` => Repeat the character `min` to `max` times. * - `[min-max]` => Generate a number between min and max (inclusive). * - * @param string The template string to to parse. + * @param string The template string to parse. * * @example * faker.helpers.regexpStyleStringParse() // '' @@ -355,7 +355,7 @@ export class HelpersModule { * - `[x-y]+` => Repeat characters between `x` and `y` (inclusive) 1 or more times. * - `.` => returns a wildcard ASCII character that can be any number, character or symbol. Can be combined with quantifiers as well. * - * @param pattern The template string/RegExp to to generate a matching string for. + * @param pattern The template string/RegExp to generate a matching string for. * * @throws If min value is more than max value in quantifier. e.g. `#{10,5}` * @throws If invalid quantifier symbol is passed in. diff --git a/src/modules/internet/index.ts b/src/modules/internet/index.ts index d57627ac..a6b54838 100644 --- a/src/modules/internet/index.ts +++ b/src/modules/internet/index.ts @@ -486,7 +486,7 @@ export class InternetModule { /** * Generates a username using the given person's name as base. - * The resuling username may use neither, one or both of the names provided. + * The resulting username may use neither, one or both of the names provided. * This will always return a plain ASCII string. * Some basic stripping of accents and transliteration of characters will be done. * @@ -522,7 +522,7 @@ export class InternetModule { }): string; /** * Generates a username using the given person's name as base. - * The resuling username may use neither, one or both of the names provided. + * The resulting username may use neither, one or both of the names provided. * This will always return a plain ASCII string. * Some basic stripping of accents and transliteration of characters will be done. * @@ -546,7 +546,7 @@ export class InternetModule { userName(firstName?: string, lastName?: string): string; /** * Generates a username using the given person's name as base. - * The resuling username may use neither, one or both of the names provided. + * The resulting username may use neither, one or both of the names provided. * This will always return a plain ASCII string. * Some basic stripping of accents and transliteration of characters will be done. * @@ -1309,7 +1309,7 @@ export class InternetModule { * @param options An options object. Defaults to `{}`. * @param options.length The length of the password to generate. Defaults to `15`. * @param options.memorable Whether the generated password should be memorable. Defaults to `false`. - * @param options.pattern The pattern that all chars should match should match. + * @param options.pattern The pattern that all chars should match. * This option will be ignored, if `memorable` is `true`. Defaults to `/\w/`. * @param options.prefix The prefix to use. Defaults to `''`. * @@ -1336,7 +1336,7 @@ export class InternetModule { */ memorable?: boolean; /** - * The pattern that all chars should match should match. + * The pattern that all chars should match. * This option will be ignored, if `memorable` is `true`. * * @default /\w/ @@ -1354,7 +1354,7 @@ export class InternetModule { * * @param len The length of the password to generate. Defaults to `15`. * @param memorable Whether the generated password should be memorable. Defaults to `false`. - * @param pattern The pattern that all chars should match should match. + * @param pattern The pattern that all chars should match. * This option will be ignored, if `memorable` is `true`. Defaults to `/\w/`. * @param prefix The prefix to use. Defaults to `''`. * @@ -1381,11 +1381,11 @@ export class InternetModule { * @param options The length of the password or an options object. Defaults to `{}`. * @param options.length The length of the password to generate. Defaults to `15`. * @param options.memorable Whether the generated password should be memorable. Defaults to `false`. - * @param options.pattern The pattern that all chars should match should match. + * @param options.pattern The pattern that all chars should match. * This option will be ignored, if `memorable` is `true`. Defaults to `/\w/`. * @param options.prefix The prefix to use. Defaults to `''`. * @param legacyMemorable Whether the generated password should be memorable. Defaults to `false`. - * @param legacyPattern The pattern that all chars should match should match. + * @param legacyPattern The pattern that all chars should match. * This option will be ignored, if `memorable` is `true`. Defaults to `/\w/`. * @param legacyPrefix The prefix to use. Defaults to `''`. * @@ -1415,7 +1415,7 @@ export class InternetModule { */ memorable?: boolean; /** - * The pattern that all chars should match should match. + * The pattern that all chars should match. * This option will be ignored, if `memorable` is `true`. * * @default /\w/ @@ -1449,7 +1449,7 @@ export class InternetModule { */ memorable?: boolean; /** - * The pattern that all chars should match should match. + * The pattern that all chars should match. * This option will be ignored, if `memorable` is `true`. * * @default /\w/ diff --git a/src/modules/location/index.ts b/src/modules/location/index.ts index 7feb96ee..ce556de5 100644 --- a/src/modules/location/index.ts +++ b/src/modules/location/index.ts @@ -31,12 +31,12 @@ export class LocationModule { * Generates random zip code from specified format. If format is not specified, * the locale's zip format is used. * - * @param options The format used to generate the the zip code or an options object. Defaults to `{}`. + * @param options The format used to generate the zip code or an options object. Defaults to `{}`. * @param options.state The state to generate the zip code for. * If the current locale does not have a corresponding `postcode_by_state` definition, an error is thrown. - * @param options.format The optional format used to generate the the zip code. + * @param options.format The optional format used to generate the zip code. * By default, a random format is used from the locale zip formats. - * This wont be used if the state option is specified. + * This won't be used if the state option is specified. * * @see faker.helpers.replaceSymbols() * @@ -53,13 +53,13 @@ export class LocationModule { /** * The state to generate the zip code for. * - * If the currrent locale does not have a corresponding `postcode_by_state` definition, an error is thrown. + * If the current locale does not have a corresponding `postcode_by_state` definition, an error is thrown. */ state?: string; /** - * The optional format used to generate the the zip code. + * The optional format used to generate the zip code. * - * This wont be used if the state option is specified. + * This won't be used if the state option is specified. * * @default faker.definitions.location.postcode */ @@ -327,8 +327,8 @@ export class LocationModule { * Returns a random [ISO_3166-1](https://en.wikipedia.org/wiki/ISO_3166-1) country code. * * @param options The code to return or an options object. Defaults to `{}`. - * @param options.variant The variant to return. Can be either `'alpha-2'` (two letter code) - * or `'alpha-3'` (three letter code). Defaults to `'alpha-2'`. + * @param options.variant The variant to return. Can be either `'alpha-2'` (two-letter code) + * or `'alpha-3'` (three-letter code). Defaults to `'alpha-2'`. * * @example * faker.location.countryCode() // 'SJ' @@ -344,8 +344,8 @@ export class LocationModule { | { /** * The code to return. - * Can be either `'alpha-2'` (two letter code) - * or `'alpha-3'` (three letter code). + * Can be either `'alpha-2'` (two-letter code) + * or `'alpha-3'` (three-letter code). * * @default 'alpha-2' */ |
