diff --git a/backend/sync_lib/src/operations/operation.rs b/backend/sync_lib/src/operations/operation.rs
index 3fa4d73d..a5d30a5c 100644
--- a/backend/sync_lib/src/operations/operation.rs
+++ b/backend/sync_lib/src/operations/operation.rs
@@ -5,6 +5,7 @@ use std::fmt::Display;
use crate::errors::SyncLibError;
+/// Represents a change that can be applied to a text document.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum Operation {
Insert {
@@ -36,12 +37,7 @@ impl Display for Operation {
impl Operation {
pub fn create_insert(index: i64, text: &str) -> Result