Skip to content

Commit

Permalink
Minor improvement to English grammar in error msg
Browse files Browse the repository at this point in the history
Fixed some unusual phrasing I saw while running maven commands.
Goal is to leave things even better than I found them :)
  • Loading branch information
cpsauer authored and michael-o committed Jul 27, 2021
1 parent 9ac8095 commit 19d0294
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -185,7 +185,7 @@ public void execute()

if ( !file.exists() )
{
String message = "The specified file '" + file.getPath() + "' not exists";
String message = "The specified file '" + file.getPath() + "' does not exist";
getLog().error( message );
throw new MojoFailureException( message );
}
Expand Down

0 comments on commit 19d0294

Please sign in to comment.