Skip to content

Commit

Permalink
chore: exception message typo
Browse files Browse the repository at this point in the history
  • Loading branch information
skrypetsviacheslav committed Jun 5, 2024
1 parent d8ab1f7 commit 9e70f33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static String getResourceOrFile(final String resourceName, final Charset

if (inputStream == null) {
throw new FileNotFoundException(
"Was unable to find file, or resouce, \"" + resourceName + "\"");
"Was unable to find file, or resource, \"" + resourceName + "\"");
}
try (BufferedReader br = new BufferedReader(new InputStreamReader(inputStream, encoding))) {
templateString = br.lines().collect(Collectors.joining("\n"));
Expand Down

0 comments on commit 9e70f33

Please sign in to comment.