From 4f955e68b3d37ab9af37f1127adcbd5a0fb6d33c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Wed, 26 Oct 2022 14:27:52 +0200 Subject: [PATCH] Apply suggestions from code review --- index-scheduler/src/index_mapper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index-scheduler/src/index_mapper.rs b/index-scheduler/src/index_mapper.rs index 478503a39..277fe9d7c 100644 --- a/index-scheduler/src/index_mapper.rs +++ b/index-scheduler/src/index_mapper.rs @@ -89,7 +89,7 @@ impl IndexMapper { let index = self.create_or_open_index(&index_path)?; wtxn.commit()?; - // TODO: it would be better to lazyly create the index. But we need an Index::open function for milli. + // TODO: it would be better to lazily create the index. But we need an Index::open function for milli. if let Some(BeingDeleted) = self.index_map.write().unwrap().insert(uuid, Available(index.clone())) {