Skip to content

Commit 94d4832

Browse files
committed
Improve formatting for enum configuration values
- Improve readability of enum configuration value formatting by switching to a bullet list style in documentation generation.
1 parent b729259 commit 94d4832

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devtools/config-doc-maven-plugin/src/main/java/io/quarkus/maven/config/doc/generator/AbstractFormatter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public String formatTypeDescription(ConfigProperty configProperty, Context conte
8383
} else {
8484
typeContent = configProperty.getEnumAcceptedValues().values().values().stream()
8585
.map(v -> v.configValue())
86-
.collect(Collectors.joining("`, `", "`", "`"));
86+
.collect(Collectors.joining("` \n - `", "- `", "`"));
8787
}
8888
} else {
8989
typeContent = configProperty.getTypeDescription();

0 commit comments

Comments
 (0)