Skip to content

Commit

Permalink
fix: unuseful reference
Browse files Browse the repository at this point in the history
Signed-off-by: Alessandro Sappia <[email protected]>
  • Loading branch information
asappia committed Sep 26, 2024
1 parent 04bdd21 commit ced1752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ impl OT {
},
_ => op_a.clone(),
},
Ordering::Equal => match op_a.id().cmp(&op_b.id()) {
Ordering::Equal => match op_a.id().cmp(op_b.id()) {
Ordering::Less => op_a.clone(),
Ordering::Greater => match op_a {
Operation::Insert { value, id, .. } => Operation::Insert {
Expand Down

0 comments on commit ced1752

Please sign in to comment.