mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-03-19 08:39:44 +00:00
Fix typos (#1894)
* Fix typos * Update CHANGELOG.md Co-authored-by: Austin Bonander <austin.bonander@gmail.com> Co-authored-by: Austin Bonander <austin.bonander@gmail.com>
This commit is contained in:
@@ -150,7 +150,7 @@ variable to `true`.
|
||||
If you want to make this the default, just add it to your `.env` file. `cargo sqlx prepare` will
|
||||
still do the right thing and connect to the database.
|
||||
|
||||
### Include queries behind feature flags (such as queryies inside of tests)
|
||||
### Include queries behind feature flags (such as queries inside of tests)
|
||||
|
||||
In order for sqlx to be able to find queries behind certain feature flags you need to turn them
|
||||
on by passing arguments to rustc.
|
||||
|
||||
@@ -88,7 +88,7 @@ pub async fn list() -> anyhow::Result<()> {
|
||||
.await?
|
||||
{
|
||||
let applied_migrations = migrator.get_migrations().await.unwrap_or_else(|_| {
|
||||
println!("Could not retrive data from migration table");
|
||||
println!("Could not retrieve data from migration table");
|
||||
Vec::new()
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user