From 87f846ebc5b772a80d971f12e46b7c8b685973b1 Mon Sep 17 00:00:00 2001 From: Weny Xu Date: Thu, 12 Dec 2024 11:42:53 +0800 Subject: [PATCH] Update src/mito2/src/sst/file.rs Co-authored-by: jeremyhi --- src/mito2/src/sst/file.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mito2/src/sst/file.rs b/src/mito2/src/sst/file.rs index 17c38caa6ece..5a9932ab433b 100644 --- a/src/mito2/src/sst/file.rs +++ b/src/mito2/src/sst/file.rs @@ -156,7 +156,7 @@ impl FileMeta { self.available_indexes.contains(&IndexType::FulltextIndex) } - /// Return the size of the inverted index file + /// Returns the size of the inverted index file pub fn inverted_index_size(&self) -> Option { if self.available_indexes.len() == 1 && self.inverted_index_available() { Some(self.index_file_size)