From 5a34350022f8de87a1bc86f3335918a7f2bfbf0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Jan=20Czocha=C5=84ski?= Date: Fri, 17 Mar 2023 17:40:53 +0100 Subject: [PATCH] Fix `AsyncMigrations::new` documentation --- rusqlite_migration/src/asynch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rusqlite_migration/src/asynch.rs b/rusqlite_migration/src/asynch.rs index 22cf4a5..8325f63 100644 --- a/rusqlite_migration/src/asynch.rs +++ b/rusqlite_migration/src/asynch.rs @@ -10,7 +10,7 @@ pub struct AsyncMigrations { } impl AsyncMigrations { - /// Adapt a [Migrations](crate::Migrations) instance for use in an asynchronous context. + /// Create a proxy struct to a [Migrations](crate::Migrations) instance for use in an asynchronous context. /// /// # Example ///