diff options
-rw-r--r-- | Applications/Spreadsheet/HelpWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Spreadsheet/HelpWindow.cpp b/Applications/Spreadsheet/HelpWindow.cpp index 7d5ba0e58d..8d3612b01a 100644 --- a/Applications/Spreadsheet/HelpWindow.cpp +++ b/Applications/Spreadsheet/HelpWindow.cpp @@ -157,7 +157,7 @@ String HelpWindow::render(const GUI::ModelIndex& index) if (!examples.is_empty()) { markdown_builder.append("# EXAMPLES\n"); examples.for_each_member([&](auto& text, auto& description_value) { - markdown_builder.appendf("- {}\n\n```js\n{}\n```\n", description_value.to_string(), text); + markdown_builder.appendff("- {}\n\n```js\n{}\n```\n", description_value.to_string(), text); }); } |