refactor: fix typo (#101)

This commit is contained in:
n0k0m3 2022-07-19 11:30:31 -04:00 committed by GitHub
parent 5af2f10e14
commit 5f2bccc4e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ fun Patcher.addPatchesFiltered() {
val args = MainCommand.args.sArgs?.pArgs!!
if (args.excludedPatches.contains(patchName)) {
logger.info("$prefix: Explicitely excluded")
logger.info("$prefix: Explicitly excluded")
return@patch
} else if ((!patch.include || args.defaultExclude) && !args.includedPatches.contains(patchName)) {
logger.info("$prefix: Not explicitly included")
@ -75,4 +75,4 @@ fun Patcher.mergeFiles() {
this.addFiles(args.sArgs?.pArgs!!.mergeFiles) { file ->
logger.info("Merging $file")
}
}
}