Fix fairing naming in database MySQL example.

This commit is contained in:
Failpark 2023-11-30 12:29:20 +01:00 committed by Sergio Benitez
parent 7cf8b1368f
commit 3690412aba
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ async fn destroy(mut db: Connection<Db>) -> Result<()> {
}
pub fn stage() -> AdHoc {
AdHoc::on_ignite("Diesel SQLite Stage", |rocket| async {
AdHoc::on_ignite("Diesel MySQL Stage", |rocket| async {
rocket.attach(Db::init())
.mount("/diesel-async", routes![list, read, create, delete, destroy])
})