Skip to content

Commit

Permalink
Fix missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
melix committed Sep 7, 2023
1 parent 5ca986f commit afc0d31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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("|===");
Expand Down

0 comments on commit afc0d31

Please sign in to comment.