From bbea099d06988556568c6f9993818b70c3ac5157 Mon Sep 17 00:00:00 2001 From: Ophir LOJKINE Date: Wed, 17 Aug 2022 19:03:15 +0200 Subject: [PATCH] fix typo in documentation --- sqlx-core/src/migrate/migrator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlx-core/src/migrate/migrator.rs b/sqlx-core/src/migrate/migrator.rs index f392e57a53..5526dda795 100644 --- a/sqlx-core/src/migrate/migrator.rs +++ b/sqlx-core/src/migrate/migrator.rs @@ -59,7 +59,7 @@ impl Migrator { }) } - /// Specify should ignore applied migrations that missing in the resolved migrations. + /// Specify whether applied migrations that are missing from the resolved migrations should be ignored. pub fn set_ignore_missing(&mut self, ignore_missing: bool) -> &Self { self.ignore_missing = ignore_missing; self