diff --git a/src/database/mod.rs b/src/database/mod.rs index 38c6d3bd..6dbecc66 100644 --- a/src/database/mod.rs +++ b/src/database/mod.rs @@ -135,7 +135,7 @@ pub trait Database: BatchOperations { /// It should insert and return `0` if not present in the database fn increment_last_index(&mut self, keychain: KeychainKind) -> Result; - /// Force changes to be written to disk, returning the number of bytes written + /// Force changes to be written to disk fn flush(&mut self) -> Result<(), Error>; }