Skip to content

Commit

Permalink
chore: update FileUtil.java
Browse files Browse the repository at this point in the history
ouput -> output
  • Loading branch information
eltociear authored and mikir committed Feb 5, 2025
1 parent 1ad22ae commit 0552eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/core/src/zserio/extension/common/FileUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public static void createOutputDirectory(File outputFile) throws ZserioExtension
if (parentDir.exists())
{
if (!parentDir.isDirectory())
throw new ZserioExtensionException("Can't create ouput directory because file with the same "
throw new ZserioExtensionException("Can't create output directory because file with the same "
+ "name already exists: " + parentDir.toString());
}
else
Expand Down

0 comments on commit 0552eed

Please sign in to comment.