Skip to content

Commit bb1f968

Browse files
committed
fix(analysis): fix typo in parameter set by dialog (MaibornWolff#4047)
1 parent b8dfdb2 commit bb1f968

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • analysis/analysers/importers/CoverageImporter/src/main/kotlin/de/maibornwolff/codecharta/analysers/importers/coverage

analysis/analysers/importers/CoverageImporter/src/main/kotlin/de/maibornwolff/codecharta/analysers/importers/coverage/Dialog.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ class Dialog {
4040
)
4141

4242
val keepLeadingPaths = session.promptConfirm(
43-
message = "Do you want to cut leading file paths which surround the whole project?",
43+
message = "Do you want to cut leading file paths segments that come before the project root directory?",
4444
onInputReady = testCallback()
4545
)
4646

4747
val languageParam = "--language=${language.languageName}"
4848
val outputFileParam = if (outputFileName.isNotEmpty()) "--output-file=$outputFileName" else null
4949
val notCompressedParam = if (isCompressed) null else "--not-compressed"
50-
val keepLeadingPathsParam = if (keepLeadingPaths) "--keep-leading-path" else null
50+
val keepLeadingPathsParam = if (keepLeadingPaths) "--keep-leading-paths" else null
5151

5252
return listOfNotNull(
5353
reportFile,

0 commit comments

Comments
 (0)