Skip to content

Commit

Permalink
Correcting a typo in exception message (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayuri34 authored Nov 26, 2021
1 parent c21b097 commit 1eab711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/coveo/AbstractFMT.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void formatSourceFilesInDirectory(

if (failures > 0) {
throw new MojoFailureException(
"There where errors when formatting files. Error count: " + failures);
"There were errors when formatting files. Error count: " + failures);
}
} catch (IOException exception) {
throw new MojoFailureException(exception.getMessage());
Expand Down

0 comments on commit 1eab711

Please sign in to comment.