fix formatting on nest

This commit is contained in:
Yoshua Wuyts 2021-10-25 17:33:59 +02:00
parent eb2073113f
commit b5a7dc0389
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ fn criterion_benchmark(c: &mut Criterion) {
let mut appz = tide::new();
appz.at("/z").get(|_| async { Ok("Z") });
let mut appy = tide::new();
appy.at("/y").nest(appz);