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