diff --git a/examples/postgres/axum-social-with-tests/Cargo.toml b/examples/postgres/axum-social-with-tests/Cargo.toml index 8b66ccb672..704f38179e 100644 --- a/examples/postgres/axum-social-with-tests/Cargo.toml +++ b/examples/postgres/axum-social-with-tests/Cargo.toml @@ -21,7 +21,7 @@ time = "0.3.48" uuid = { version = "1.12.1", features = ["serde"] } validator = { version = "0.20.0", features = ["derive"] } -# Auxilliary crates +# Auxiliary crates anyhow = "1.0.58" dotenvy = "0.15.7" thiserror = "2.0.18" diff --git a/examples/sqlite/extension/sqlx.toml b/examples/sqlite/extension/sqlx.toml index ada65b1a25..f16e67f589 100644 --- a/examples/sqlite/extension/sqlx.toml +++ b/examples/sqlite/extension/sqlx.toml @@ -6,7 +6,7 @@ # # When the extension file is installed in a non-standard location, as # in this example, there are two options: -# * Provide the full path the the extension, as seen below. +# * Provide the full path to the extension, as seen below. # * Add the non-standard location to the library search path, which on # Linux means adding it to the LD_LIBRARY_PATH environment variable. unsafe-load-extensions = [ diff --git a/sqlx-cli/README.md b/sqlx-cli/README.md index ae575d5b5f..ce8b6033c4 100644 --- a/sqlx-cli/README.md +++ b/sqlx-cli/README.md @@ -57,7 +57,7 @@ sqlx database drop sqlx migrate add ``` -Creates a new file in `migrations/-.sql`. Add your database schema changes to +Creates a new file in `migrations/_.sql`. Add your database schema changes to this new file. --- diff --git a/sqlx-cli/tests/migrate.rs b/sqlx-cli/tests/migrate.rs index 002aa4da96..81e71a6516 100644 --- a/sqlx-cli/tests/migrate.rs +++ b/sqlx-cli/tests/migrate.rs @@ -206,7 +206,7 @@ async fn skip_reversible_migrations() { .success(); assert_eq!(db.applied_migrations().await, vec![20230101000000]); - // Skip to to non-existent version. + // Skip to non-existent version. db.run_migration(MigrateCommand::Skip, Some(20230901000000999), false) .failure(); assert_eq!(db.applied_migrations().await, vec![20230101000000]); diff --git a/sqlx-postgres/src/options/pgpass.rs b/sqlx-postgres/src/options/pgpass.rs index b8e0e4847f..2e8a41cd32 100644 --- a/sqlx-postgres/src/options/pgpass.rs +++ b/sqlx-postgres/src/options/pgpass.rs @@ -222,7 +222,7 @@ fn find_next_field<'a>(line: &mut &'a str) -> Result, PGPassLinePar last_added = idx + 1; } else { if escaping && c != '\\' && c != ':' { - tracing::warn!("Superfluous escape in in pgpass file"); + tracing::warn!("Superfluous escape in pgpass file"); } escaping = false; } diff --git a/src/macros/test.md b/src/macros/test.md index 122eb60356..2e9d47b681 100644 --- a/src/macros/test.md +++ b/src/macros/test.md @@ -239,7 +239,7 @@ use serde_json::json; // #[sqlx::test(fixtures(path = "./fixtures", scripts("users", "posts")))] #[sqlx::test(fixtures("users", "posts"))] async fn test_create_comment(pool: PgPool) -> sqlx::Result<()> { - // See examples/postgres/social-axum-with-tests for a more in-depth example. + // See examples/postgres/axum-social-with-tests for a more in-depth example. let mut app = create_app(pool); let comment = test_request(