From 4c9d23960a3eba4a8ca7bbfd4715df6a7a6e0599 Mon Sep 17 00:00:00 2001 From: amos Date: Sat, 27 Aug 2022 00:45:32 +0200 Subject: [PATCH] SqliteConnectOptions typo (#2072) --- sqlx-core/src/sqlite/options/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlx-core/src/sqlite/options/mod.rs b/sqlx-core/src/sqlite/options/mod.rs index 2e21bf559..f7a815d31 100644 --- a/sqlx-core/src/sqlite/options/mod.rs +++ b/sqlx-core/src/sqlite/options/mod.rs @@ -408,7 +408,7 @@ impl SqliteConnectOptions { /// Sets the [`vfs`](https://www.sqlite.org/vfs.html) parameter of the database connection. /// - /// The default value is empty, and sqlite will use the default VFS object dependeing on the + /// The default value is empty, and sqlite will use the default VFS object depending on the /// operating system. pub fn vfs(mut self, vfs_name: impl Into>) -> Self { self.vfs = Some(vfs_name.into());