From 9c6bcd27785c94dd7cb8634767ecc1105e35b8c5 Mon Sep 17 00:00:00 2001 From: Adrian Duke Date: Wed, 8 Apr 2026 15:20:46 +0100 Subject: [PATCH] =?UTF-8?q?cli:=20Fix=20typo=20"writeable"=20=E2=86=92=20"?= =?UTF-8?q?writable"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Detected by `typos`. --- crates/radicle-cli/src/commands/issue/cache.rs | 4 ++-- crates/radicle-cli/src/commands/patch/cache.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/radicle-cli/src/commands/issue/cache.rs b/crates/radicle-cli/src/commands/issue/cache.rs index 4685c580..f76fd756 100644 --- a/crates/radicle-cli/src/commands/issue/cache.rs +++ b/crates/radicle-cli/src/commands/issue/cache.rs @@ -39,9 +39,9 @@ pub fn run(mode: CacheMode, profile: &Profile) -> anyhow::Result<()> { fn cache(id: Option, repository: &Repository, profile: &Profile) -> anyhow::Result<()> { let mut issues = { - // NOTE: Since we require a cache that is writeable, on top of a store that + // NOTE: Since we require a cache that is writable, on top of a store that // is read-only, we can neither use [`term::cob::issues_mut`] nor [`term::cob::issues`] - // since these convenience functions pair a writeable cache with a writeable + // since these convenience functions pair a writable cache with a writable // store, and respectively a read-only cache with a read-only store. let db = profile.cobs_db_mut()?; diff --git a/crates/radicle-cli/src/commands/patch/cache.rs b/crates/radicle-cli/src/commands/patch/cache.rs index da979f22..4cb0078b 100644 --- a/crates/radicle-cli/src/commands/patch/cache.rs +++ b/crates/radicle-cli/src/commands/patch/cache.rs @@ -39,9 +39,9 @@ pub fn run(mode: CacheMode, profile: &Profile) -> anyhow::Result<()> { fn cache(id: Option, repository: &Repository, profile: &Profile) -> anyhow::Result<()> { let mut patches = { - // NOTE: Since we require a cache that is writeable, on top of a store that + // NOTE: Since we require a cache that is writable, on top of a store that // is read-only, we can neither use [`term::cob::patches_mut`] nor [`term::cob::patches`] - // since these convenience functions pair a writeable cache with a writeable + // since these convenience functions pair a writable cache with a writable // store, and respectively a read-only cache with a read-only store. let db = profile.cobs_db_mut()?;