From 6686f86c6724a31df43aad6d0f3b3a6ef5137000 Mon Sep 17 00:00:00 2001 From: Sebastian Martinez Date: Tue, 24 Jun 2025 11:38:39 +0200 Subject: [PATCH] radicle: fix small typo --- crates/radicle/src/cob/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/radicle/src/cob/store.rs b/crates/radicle/src/cob/store.rs index ddaf8bd1..b69e9698 100644 --- a/crates/radicle/src/cob/store.rs +++ b/crates/radicle/src/cob/store.rs @@ -49,7 +49,7 @@ pub trait Cob: Sized + PartialEq + Debug { /// Error returned by `apply` function. type Error: std::error::Error + Send + Sync + 'static; - /// Initialize a collarorative object from a root operation. + /// Initialize a collaborative object from a root operation. fn from_root(op: Op, repo: &R) -> Result; /// Apply an operation to the state.