diff options
| author | ST-DDT <[email protected]> | 2023-12-03 01:07:39 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-12-03 00:07:39 +0000 |
| commit | 505f659e4359a39b6e7949209071ba663b751151 (patch) | |
| tree | d533d7bec23f745bebfbd84acca898f386756b23 /src/modules | |
| parent | 9dd57d742d736de0a5cf75aa8ef1ebb2460afd19 (diff) | |
| download | faker-505f659e4359a39b6e7949209071ba663b751151.tar.xz faker-505f659e4359a39b6e7949209071ba663b751151.zip | |
docs: check and improve handling of duplicate tags (#2444)
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/helpers/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/helpers/index.ts b/src/modules/helpers/index.ts index 26de107d..6e993c84 100644 --- a/src/modules/helpers/index.ts +++ b/src/modules/helpers/index.ts @@ -417,8 +417,8 @@ export class SimpleHelpersModule extends SimpleModuleBase { * * @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. + * @throws If min value is more than max value in quantifier, e.g. `#{10,5}`. + * @throws If an invalid quantifier symbol is passed in. * * @example * faker.helpers.fromRegExp('#{5}') // '#####' |
