File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { CustomError } from './custom-error';
33
44export class MissingOptionError extends CustomError {
55 constructor ( option : string , required : string [ ] ) {
6- const msg = `The ${ option } option can only be use in combination with ${ required
6+ const msg = `The ${ option } option can only be used in combination with ${ required
77 . sort ( )
88 . join ( ' or ' ) } .`;
99 super ( msg ) ;
Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ describe.each(userJourneyWorkflows)(
255255 env,
256256 } ) ;
257257 expect ( stdout ) . toContainText (
258- 'The --exclude option can only be use in combination with --all-projects or --yarn-workspaces.' ,
258+ 'The --exclude option can only be used in combination with --all-projects or --yarn-workspaces.' ,
259259 ) ;
260260 expect ( code ) . toEqual ( 2 ) ;
261261 } ) ;
You can’t perform that action at this time.
0 commit comments