Fix create_if_missing docs

This commit is contained in:
foldu 2020-07-27 12:56:25 +02:00 committed by Ryan Leckey
parent 0ed8e3f610
commit bd1d9f45f3

View File

@ -103,7 +103,7 @@ impl SqliteConnectOptions {
/// Sets the [access mode](https://www.sqlite.org/c3ref/open.html) to create the database file
/// if the file does not exist.
///
/// By default, a new file **will be** created if one is not found.
/// By default, a new file **will not be** created if one is not found.
pub fn create_if_missing(mut self, create: bool) -> Self {
self.create_if_missing = create;
self