From d8886924d473fcfeadaa74f84b9aa76a22412350 Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Sat, 18 Oct 2025 16:40:45 +0800 Subject: [PATCH] Fix typos Found via `codespell -H` and `typos --hidden --format brief` --- CHANGELOG.md | 2 +- test/render_html.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de6f50e..e0a7988 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ - ENH -Fix broken theme URLs in README, typo in demo html by @meli-lewis in https://github.com/Quansight-Labs/accessible-pygments/pull/53 - ENH - Update code to not get images from placeholder.com by @Carreau in https://github.com/Quansight-Labs/accessible-pygments/pull/51 - ENH -Reflect that rgb colors are in 0-1 and floats. by @Carreau in https://github.com/Quansight-Labs/accessible-pygments/pull/52 -- ENH - Small refactor of color utils for readibility and type checkability by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/55 +- ENH - Small refactor of color utils for readability and type checkability by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/55 - ENH - Rename hex to float function by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/57 - ENH - Set a11y-light default background to #f2f2f2 (light gray) by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/56 diff --git a/test/render_html.py b/test/render_html.py index ec961d5..fa5ec47 100644 --- a/test/render_html.py +++ b/test/render_html.py @@ -37,7 +37,7 @@ def render_html(themes: list, languages=languages, outdir=outdir): """Generate rendered HTML sample of the themes for the specified languages. Args: - themes (list): list of registred themes. + themes (list): list of registered themes. languages (dict, optional): Dict containing the languages samples to render. Defaults to languages. outdir (pathlib.Path, optional): Directory to save the rendered HTML files to.