From 83c8db2d21d9be3aeb108e163de17087468e4747 Mon Sep 17 00:00:00 2001 From: gwenn Date: Sat, 24 Mar 2018 10:58:42 +0100 Subject: [PATCH] Fix Connection::open documentation (#332) --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 0ccd22f..98e62da 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -199,7 +199,7 @@ impl Connection { /// Open a new connection to a SQLite database. /// /// `Connection::open(path)` is equivalent to `Connection::open_with_flags(path, - /// SQLITE_OPEN_READ_WRITE | SQLITE_OPEN_CREATE)`. + /// OpenFlags::SQLITE_OPEN_READ_WRITE | OpenFlags::SQLITE_OPEN_CREATE)`. /// /// # Failure ///