diff --git a/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt b/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt index b15949e..9181f1e 100644 --- a/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt +++ b/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt @@ -1028,7 +1028,9 @@ class RecipeMarkdownGenerator : Runnable { || option.example.matches(".*:\\s.*".toRegex())) ) { "'" + option.example + "'" - } else { + } else if (option.type == "boolean") { + "false" + }else { option.example } writeln(" ${option.name}: $ex")