chore: fix some comments

Signed-off-by: dashangcun <jchaodaohang@foxmail.com>
This commit is contained in:
dashangcun 2024-06-24 20:14:31 +08:00
parent 0d3677ecce
commit fb2b7c769f
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ pub type RawAutoExtension = unsafe extern "C" fn(
_: *const ffi::sqlite3_api_routines,
) -> c_int;
/// Bridge bewteen `RawAutoExtension` and `AutoExtension`
/// Bridge between `RawAutoExtension` and `AutoExtension`
///
/// # Safety
/// * Opening a database from an auto-extension handler will lead to

View File

@ -196,7 +196,7 @@ pub trait Params: Sealed {
// forces people to use `params![...]` or `rusqlite::params_from_iter` for long
// homogeneous lists of parameters. This is not that big of a deal, but is
// unfortunate, especially because I mostly did it because I wanted a simple
// syntax for no-params that didnt require importing -- the empty tuple fits
// syntax for no-params that didn't require importing -- the empty tuple fits
// that nicely, but I didn't think of it until much later.
//
// Admittedly, if we did have the generic impl, then we *wouldn't* support the