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()?;