Skip to content

Commit 89098dc

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into update-error-databases
2 parents 7381631 + 48efc05 commit 89098dc

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/_tools/lint/pkg-json-names/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/_tools/lint/pkg-json-names/lib/validate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function validate( opts, options ) {
6969
if ( hasOwnProp( options, 'ignore' ) ) {
7070
opts.ignore = options.ignore;
7171
if ( !isString( opts.ignore ) && !isStringArray( opts.ignore ) ) {
72-
return new TypeError( format( 'invalid option. `%s` option must be a string or array of strings. Option: `%s`.', 'ignore', opts.ignore ) );
72+
return new TypeError( format( 'invalid option. `%s` option must be a string or an array of strings. Option: `%s`.', 'ignore', opts.ignore ) );
7373
}
7474
}
7575
return null;

0 commit comments

Comments
 (0)