From 0e5b9a1bea2263f2f93c3290bade729ba3bb5c5c Mon Sep 17 00:00:00 2001 From: Ophir LOJKINE Date: Thu, 18 Aug 2022 02:17:12 +0200 Subject: [PATCH] fix typo in documentation (#2058) --- 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