From e4eb883a0d089ebcd7befb3cb735498c4ff8e2c2 Mon Sep 17 00:00:00 2001 From: Ralph Ursprung <39383228+rursprung@users.noreply.github.com> Date: Sun, 29 Sep 2019 20:35:26 +0200 Subject: [PATCH] fix minor typo in output of extractors example (#114) this has no effect on the actual functionality, it just fixes a typo which was hard to overlook :) --- examples/extractors/src/multiple.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/extractors/src/multiple.rs b/examples/extractors/src/multiple.rs index ed9cad1..31411a7 100644 --- a/examples/extractors/src/multiple.rs +++ b/examples/extractors/src/multiple.rs @@ -9,7 +9,7 @@ struct Info { fn index((path, query): (web::Path<(u32, String)>, web::Query<Info>)) -> String { format!( - "Welcome {}, friend {}, useri {}!", + "Welcome {}, friend {}, userid {}!", query.username, path.1, path.0 ) }