From f1f96fc41713e16e067de1d17f024c0156f2d054 Mon Sep 17 00:00:00 2001 From: Paul Masurel Date: Mon, 11 Nov 2019 10:04:12 +0900 Subject: [PATCH] Updating some doc. --- src/indexer/index_writer.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/indexer/index_writer.rs b/src/indexer/index_writer.rs index 4d37dfe8d..ddc95e44d 100644 --- a/src/indexer/index_writer.rs +++ b/src/indexer/index_writer.rs @@ -680,9 +680,6 @@ impl IndexWriter { /// The opstamp is an increasing `u64` that can /// be used by the client to align commits with its own /// document queue. - /// - /// Currently it represents the number of documents that - /// have been added since the creation of the index. pub fn add_document(&self, document: Document) -> Opstamp { let opstamp = self.stamper.stamp(); let add_operation = AddOperation { opstamp, document };