From 180511795b3603f6a169bfa36c7530c069393503 Mon Sep 17 00:00:00 2001 From: Tamo Date: Tue, 6 Dec 2022 10:53:43 +0100 Subject: [PATCH] Update dump/src/reader/v4/mod.rs fix typo Co-authored-by: Louis Dureuil --- dump/src/reader/v4/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dump/src/reader/v4/mod.rs b/dump/src/reader/v4/mod.rs index 104896353..6f10477ad 100644 --- a/dump/src/reader/v4/mod.rs +++ b/dump/src/reader/v4/mod.rs @@ -174,7 +174,7 @@ impl V4IndexReader { } // Once we reach the `creation_task_id` we can stop iterating on the task queue and - // this task represent our `created_at`. + // this task represents our `created_at`. if task.id as usize == index_metadata.creation_task_id { created_at = task.created_at(); break;