diff --git a/aot-std-optimizers/src/configPropsGenerator/java/io/micronaut/aot/config/ConfigPropsGenerator.java b/aot-std-optimizers/src/configPropsGenerator/java/io/micronaut/aot/config/ConfigPropsGenerator.java index 52707f3d..af368bd6 100644 --- a/aot-std-optimizers/src/configPropsGenerator/java/io/micronaut/aot/config/ConfigPropsGenerator.java +++ b/aot-std-optimizers/src/configPropsGenerator/java/io/micronaut/aot/config/ConfigPropsGenerator.java @@ -60,7 +60,7 @@ public static void main(String[] args) throws IOException { writer.println("|" + module.id() + ".enabled|Enables the " + module.description() + " optimization|true"); for (Option option : module.options()) { // Add 0-width space so that text wrapping works - var sample = option.sampleValue().replace(",", "\u200B"); + var sample = option.sampleValue().replace(",", ",\u200B"); writer.println("|" + option.key() + "|" + option.description() + "|" + sample); } writer.println("|===");