Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/postgres/axum-social-with-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/sqlite/extension/sqlx.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion sqlx-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ sqlx database drop
sqlx migrate add <name>
```

Creates a new file in `migrations/<timestamp>-<name>.sql`. Add your database schema changes to
Creates a new file in `migrations/<timestamp>_<name>.sql`. Add your database schema changes to
this new file.

---
Expand Down
2 changes: 1 addition & 1 deletion sqlx-cli/tests/migrate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand Down
2 changes: 1 addition & 1 deletion sqlx-postgres/src/options/pgpass.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ fn find_next_field<'a>(line: &mut &'a str) -> Result<Cow<'a, str>, 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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/macros/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
Loading