From 8780d28fa6df3bcc52aaf8ac619778cfe44aedf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Joly?= Date: Sun, 28 Jul 2024 20:52:09 +0100 Subject: [PATCH] docs: fix indentation This was flagged by Clippy. --- rusqlite_migration/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rusqlite_migration/src/lib.rs b/rusqlite_migration/src/lib.rs index 5ba4da9..50daf46 100644 --- a/rusqlite_migration/src/lib.rs +++ b/rusqlite_migration/src/lib.rs @@ -135,9 +135,9 @@ impl<'u> M<'u> { /// migrations, because: /// * a PRAGMA executed this way may not be applied consistently. For instance: /// * [`foreign_keys`](https://sqlite.org/pragma.html#pragma_foreign_keys) needs to be - /// executed for each sqlite connection, not just once per database as a migration. Please - /// see the [`Self::foreign_key_check()`] method to maintain foreign key constraints during - /// migrations instead. + /// executed for each sqlite connection, not just once per database as a migration. Please + /// see the [`Self::foreign_key_check()`] method to maintain foreign key constraints during + /// migrations instead. /// * [`journal_mode`][jm] has no effect when executed inside transactions (that will be /// the case for the SQL written in `up`). /// * Multiple SQL commands containing `PRAGMA` are [not working][ru794] with the