Skip to content

Commit 1eab711

Browse files
authored
Correcting a typo in exception message (#111)
1 parent c21b097 commit 1eab711

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/coveo/AbstractFMT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public void formatSourceFilesInDirectory(
155155

156156
if (failures > 0) {
157157
throw new MojoFailureException(
158-
"There where errors when formatting files. Error count: " + failures);
158+
"There were errors when formatting files. Error count: " + failures);
159159
}
160160
} catch (IOException exception) {
161161
throw new MojoFailureException(exception.getMessage());

0 commit comments

Comments
 (0)