From 55a4a1b475493e54a1ef55e5395fbdd081215586 Mon Sep 17 00:00:00 2001 From: Travis Beatty Date: Sun, 10 Aug 2025 18:01:10 -0400 Subject: [PATCH] Fix rustdoc not-a-link --- src/replica.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/replica.rs b/src/replica.rs index cfb7b085f..4af7bb0f1 100644 --- a/src/replica.rs +++ b/src/replica.rs @@ -306,7 +306,7 @@ impl Replica { /// Create a new task. /// - /// Use ['Uuid::new_v4`] to invent a new task ID, if necessary. If the task already + /// Use [Uuid::new_v4] to invent a new task ID, if necessary. If the task already /// exists, it is returned. pub fn create_task(&mut self, uuid: Uuid, ops: &mut Operations) -> Result { if let Some(task) = self.get_task(uuid)? {