From 12195f1962afe7a75a855a7db1aa5c45ed9532ed Mon Sep 17 00:00:00 2001 From: Honnix Date: Mon, 4 Nov 2024 16:48:05 +0100 Subject: [PATCH] chore: Minor typo fix (#253) --- .../main/kotlin/com/bazel_diff/interactor/TargetTypeFilter.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/main/kotlin/com/bazel_diff/interactor/TargetTypeFilter.kt b/cli/src/main/kotlin/com/bazel_diff/interactor/TargetTypeFilter.kt index a7ad40b..e4f5029 100644 --- a/cli/src/main/kotlin/com/bazel_diff/interactor/TargetTypeFilter.kt +++ b/cli/src/main/kotlin/com/bazel_diff/interactor/TargetTypeFilter.kt @@ -14,7 +14,7 @@ class TargetTypeFilter( val targetHash = targets[label]!! if (!targetHash.hasType()) { throw IllegalStateException( - "No target type info found, please re-generate the target hashes JSON with --includeTypeTarget!") + "No target type info found, please re-generate the target hashes JSON with --includeTargetType!") } return targetTypes.contains(targetHash.type) }