Merge pull request #340 from gwenn/fix-doc

Fix Connection::open documentation (#332)
This commit is contained in:
gwenn 2018-03-24 11:01:49 +01:00 committed by GitHub
commit b1b1d70ba9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -199,7 +199,7 @@ impl Connection {
/// Open a new connection to a SQLite database. /// Open a new connection to a SQLite database.
/// ///
/// `Connection::open(path)` is equivalent to `Connection::open_with_flags(path, /// `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 /// # Failure
/// ///