@@ -486,7 +486,7 @@ export class InternetModule {
486486
487487 /**
488488 * Generates a username using the given person's name as base.
489- * The resuling username may use neither, one or both of the names provided.
489+ * The resulting username may use neither, one or both of the names provided.
490490 * This will always return a plain ASCII string.
491491 * Some basic stripping of accents and transliteration of characters will be done.
492492 *
@@ -522,7 +522,7 @@ export class InternetModule {
522522 } ) : string ;
523523 /**
524524 * Generates a username using the given person's name as base.
525- * The resuling username may use neither, one or both of the names provided.
525+ * The resulting username may use neither, one or both of the names provided.
526526 * This will always return a plain ASCII string.
527527 * Some basic stripping of accents and transliteration of characters will be done.
528528 *
@@ -546,7 +546,7 @@ export class InternetModule {
546546 userName ( firstName ?: string , lastName ?: string ) : string ;
547547 /**
548548 * Generates a username using the given person's name as base.
549- * The resuling username may use neither, one or both of the names provided.
549+ * The resulting username may use neither, one or both of the names provided.
550550 * This will always return a plain ASCII string.
551551 * Some basic stripping of accents and transliteration of characters will be done.
552552 *
@@ -1309,7 +1309,7 @@ export class InternetModule {
13091309 * @param options An options object. Defaults to `{}`.
13101310 * @param options.length The length of the password to generate. Defaults to `15`.
13111311 * @param options.memorable Whether the generated password should be memorable. Defaults to `false`.
1312- * @param options.pattern The pattern that all chars should match should match .
1312+ * @param options.pattern The pattern that all chars should match.
13131313 * This option will be ignored, if `memorable` is `true`. Defaults to `/\w/`.
13141314 * @param options.prefix The prefix to use. Defaults to `''`.
13151315 *
@@ -1336,7 +1336,7 @@ export class InternetModule {
13361336 */
13371337 memorable ?: boolean ;
13381338 /**
1339- * The pattern that all chars should match should match .
1339+ * The pattern that all chars should match.
13401340 * This option will be ignored, if `memorable` is `true`.
13411341 *
13421342 * @default /\w/
@@ -1354,7 +1354,7 @@ export class InternetModule {
13541354 *
13551355 * @param len The length of the password to generate. Defaults to `15`.
13561356 * @param memorable Whether the generated password should be memorable. Defaults to `false`.
1357- * @param pattern The pattern that all chars should match should match .
1357+ * @param pattern The pattern that all chars should match.
13581358 * This option will be ignored, if `memorable` is `true`. Defaults to `/\w/`.
13591359 * @param prefix The prefix to use. Defaults to `''`.
13601360 *
@@ -1381,11 +1381,11 @@ export class InternetModule {
13811381 * @param options The length of the password or an options object. Defaults to `{}`.
13821382 * @param options.length The length of the password to generate. Defaults to `15`.
13831383 * @param options.memorable Whether the generated password should be memorable. Defaults to `false`.
1384- * @param options.pattern The pattern that all chars should match should match .
1384+ * @param options.pattern The pattern that all chars should match.
13851385 * This option will be ignored, if `memorable` is `true`. Defaults to `/\w/`.
13861386 * @param options.prefix The prefix to use. Defaults to `''`.
13871387 * @param legacyMemorable Whether the generated password should be memorable. Defaults to `false`.
1388- * @param legacyPattern The pattern that all chars should match should match .
1388+ * @param legacyPattern The pattern that all chars should match.
13891389 * This option will be ignored, if `memorable` is `true`. Defaults to `/\w/`.
13901390 * @param legacyPrefix The prefix to use. Defaults to `''`.
13911391 *
@@ -1415,7 +1415,7 @@ export class InternetModule {
14151415 */
14161416 memorable ?: boolean ;
14171417 /**
1418- * The pattern that all chars should match should match .
1418+ * The pattern that all chars should match.
14191419 * This option will be ignored, if `memorable` is `true`.
14201420 *
14211421 * @default /\w/
@@ -1449,7 +1449,7 @@ export class InternetModule {
14491449 */
14501450 memorable ?: boolean ;
14511451 /**
1452- * The pattern that all chars should match should match .
1452+ * The pattern that all chars should match.
14531453 * This option will be ignored, if `memorable` is `true`.
14541454 *
14551455 * @default /\w/
0 commit comments