From 65c520245aa20e99e64d9ffcb2062a4502a699ea Mon Sep 17 00:00:00 2001 From: Josh McKinney Date: Sat, 27 Dec 2025 11:19:39 -0800 Subject: [PATCH] fix(changelog): fix typo (#2300) --- CHANGELOG.md | 2 +- cliff.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d610e069..c87c6cce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/cliff.toml b/cliff.toml index 92d4db27..3b20b647 100644 --- a/cliff.toml +++ b/cliff.toml @@ -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" }, ]