CHANGELOG.md: Fix the spelling of the HTML renderer flags.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3ff3e8c..a9841ea 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,14 +10,14 @@ New features:
utility, is now built as a standalone library, in order to simplify its
reuse in applications.
- * With `MD_RENDER_FLAG_SKIP_UTF8_BOM`, the HTML renderer now skips UTF-8 byte
+ * With `MD_HTML_FLAG_SKIP_UTF8_BOM`, the HTML renderer now skips UTF-8 byte
order mark (BOM) if the input begins with it, before passing to the Markdown
parser.
`md2html` utility automatically enables the flag (unless it is custom-built
with `-DMD4C_USE_ASCII`).
- * With `MD_RENDER_FLAG_XHTML`, The HTML renderer generates XHTML instead of
+ * With `MD_HTML_FLAG_XHTML`, The HTML renderer generates XHTML instead of
HTML.
This effectively means `<br />` instead of `<br>` and similarly `<hr />`