Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
cli: Fix typo "writeable" → "writable"
Adrian Duke committed 13 days ago
commit 9c6bcd27785c94dd7cb8634767ecc1105e35b8c5
parent ac3eba0
2 files changed +4 -4
modified 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<IssueId>, 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()?;
modified 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<PatchId>, 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()?;