* 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:
Kian-Meng Ang
2022-06-09 05:56:56 +08:00
committed by GitHub
parent ed56622526
commit d52f301a94
11 changed files with 12 additions and 12 deletions

View File

@@ -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.

View File

@@ -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()
});