Spelling and a few more nits

* fix some simple spelling mistakes
* a few other minor prof-reading nits
This commit is contained in:
Yuri Astrakhan
2023-07-26 19:59:51 -04:00
parent ce71e92fe2
commit 2e62b031bf
4 changed files with 12 additions and 12 deletions

View File

@@ -1039,7 +1039,7 @@ impl<'conn> Iterator for Batch<'conn, '_> {
bitflags::bitflags! {
/// Flags for opening SQLite database connections. See
/// [sqlite3_open_v2](http://www.sqlite.org/c3ref/open.html) for details.
/// [sqlite3_open_v2](https://www.sqlite.org/c3ref/open.html) for details.
///
/// The default open flags are `SQLITE_OPEN_READ_WRITE | SQLITE_OPEN_CREATE
/// | SQLITE_OPEN_URI | SQLITE_OPEN_NO_MUTEX`. See [`Connection::open`] for