Skip to content

Commit

Permalink
docs: fix indentation
Browse files Browse the repository at this point in the history
This was flagged by Clippy.
  • Loading branch information
cljoly committed Jul 28, 2024
1 parent 59a8d2a commit 8780d28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rusqlite_migration/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8780d28

Please sign in to comment.