fix: typo in changelog (#1857)

This commit is contained in:
Josh McKinney
2025-05-15 02:41:41 -07:00
committed by GitHub
parent 702fff501c
commit 09cc9ef57d
2 changed files with 5 additions and 1 deletions

View File

@@ -1617,7 +1617,7 @@ All notable changes to this project will be documented in this file.
> The paste crate is no longer maintained. Replaces the usages of this in
> the Stylize declarative macros with hard coded values. These macros are
> internal implementation deatil to ratatui and so the changes should have
> internal implementation detail to ratatui and so the changes should have
> no impact on users.
>
> Fixes:https://github.com/ratatui/ratatui/issues/1712

View File

@@ -92,6 +92,10 @@ commit_preprocessors = [
{ pattern = '(Clarify README.md)', replace = "docs(readme): ${1}" },
{ pattern = '(Update README.md)', replace = "docs(readme): ${1}" },
{ pattern = '(fix typos|Fix typos)', replace = "fix: ${1}" },
# a small typo that squeaked through and which would otherwise trigger the typos linter.
# Regex obsfucation is to avoid triggering the linter in this file until there's a per file config
# See https://github.com/crate-ci/typos/issues/724
{ pattern = '\<[d]eatil\>', replace = "detail" },
]
# regex for parsing and grouping commits
commit_parsers = [