cob: Remove mentions of automerge
This commit is contained in:
parent
c3e11057ad
commit
69fe1d5989
|
|
@ -3,8 +3,7 @@
|
||||||
#![warn(clippy::unwrap_used)]
|
#![warn(clippy::unwrap_used)]
|
||||||
//! # Collaborative Objects
|
//! # Collaborative Objects
|
||||||
//!
|
//!
|
||||||
//! Collaborative objects are graphs of CRDTs. The current CRDTs that
|
//! Collaborative objects are graphs of CRDTs.
|
||||||
//! is intended to be used are specifically [automerge] CRDTs.
|
|
||||||
//!
|
//!
|
||||||
//! ## Basic Types
|
//! ## Basic Types
|
||||||
//!
|
//!
|
||||||
|
|
@ -48,18 +47,12 @@
|
||||||
//! [`History::traverse`] which provides a way of inspecting each
|
//! [`History::traverse`] which provides a way of inspecting each
|
||||||
//! [`Entry`] and building up a final value.
|
//! [`Entry`] and building up a final value.
|
||||||
//!
|
//!
|
||||||
//! This mechanism would be used in tandem with [automerge] to load an
|
|
||||||
//! automerge document and deserialize into an application defined
|
|
||||||
//! object.
|
|
||||||
//!
|
|
||||||
//! This traversal is also the point at which the [`Entry::author`]
|
//! This traversal is also the point at which the [`Entry::author`]
|
||||||
//! and [`Entry::resource`] can be retrieved to apply any kind of
|
//! and [`Entry::resource`] can be retrieved to apply any kind of
|
||||||
//! filtering logic. For example, a specific `author`'s change may be
|
//! filtering logic. For example, a specific `author`'s change may be
|
||||||
//! egregious, spouting terrible libel about Radicle. It is at this
|
//! egregious, spouting terrible libel about Radicle. It is at this
|
||||||
//! point that the `actor`'s change can be filtered out from the
|
//! point that the `actor`'s change can be filtered out from the
|
||||||
//! final product of the traversal.
|
//! final product of the traversal.
|
||||||
//!
|
|
||||||
//! [automerge]: https://automerge.org
|
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
extern crate qcheck;
|
extern crate qcheck;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue