fix(changelog): fix typo (#2300)

This commit is contained in:
Josh McKinney
2025-12-27 11:19:39 -08:00
committed by GitHub
parent f8b42adb5f
commit 65c520245a
2 changed files with 2 additions and 1 deletions

View File

@@ -340,7 +340,7 @@ We are excited to announce the biggest release of `ratatui` so far - a Rust libr
- [22610b0](https://github.com/ratatui/ratatui/commit/22610b019b9e7b451cd2ba2c44aa625fd24a8f95) *(uncategorized)* Support adding an Offset to Position by @joshka in [#2239](https://github.com/ratatui/ratatui/pull/2239)
> Adds Position::offset() and arithmentic ops (Position + Offset and
> Adds Position::offset() and arithmetic ops (Position + Offset and
> Position - Offset)
>
> Fixes:https://github.com/ratatui/ratatui/issues/2018

View File

@@ -123,6 +123,7 @@ commit_preprocessors = [
{ pattern = '\<[f]eatuers\>', replace = "features" },
{ pattern = '\<[s]pecically\>', replace = "specially" },
{ pattern = '\<[g]ague\>', replace = "gauge" },
{ pattern = '\<[a]rithmentic\>', replace = "arithmetic" },
{ pattern = '\<[i]ntructions\>', replace = "instructions" },
{ pattern = '\<[i]mplementated\>', replace = "implemented" },
]