Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/replica.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Task> {
if let Some(task) = self.get_task(uuid)? {
Expand Down
Loading