diff options
Diffstat (limited to 'src/table/crdt/bool.rs')
-rw-r--r-- | src/table/crdt/bool.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/crdt/bool.rs b/src/table/crdt/bool.rs index 1989c92e..53af8f82 100644 --- a/src/table/crdt/bool.rs +++ b/src/table/crdt/bool.rs @@ -27,7 +27,7 @@ impl From<bool> for Bool { } } -impl CRDT for Bool { +impl Crdt for Bool { fn merge(&mut self, other: &Self) { self.0 = self.0 || other.0; } |