From 620091d31b7886d4c8760509242b64ba6a228ab6 Mon Sep 17 00:00:00 2001 From: Richard Dodd Date: Tue, 25 Jul 2017 12:46:54 +0100 Subject: [PATCH] Make docs match new function --- src/db_options.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/db_options.rs b/src/db_options.rs index 2b180c4..cab0cac 100644 --- a/src/db_options.rs +++ b/src/db_options.rs @@ -375,13 +375,13 @@ impl Options { } } - /// Enable direct I/O mode for writing - /// they may or may not improve performance depending on the use case + /// Enable direct I/O mode for flush and compaction /// /// Files will be opened in "direct I/O" mode /// which means that data written to the disk will not be cached or /// buffered. The hardware buffer of the devices may however still /// be used. Memory mapped files are not impacted by these parameters. + /// they may or may not improve performance depending on the use case /// /// Default: false ///