Fix typo in hello_ranks example.

This commit is contained in:
Sergio Benitez 2016-09-22 21:10:36 -07:00 committed by GitHub
parent d9e8a79ff6
commit 31264560e4

View File

@ -11,7 +11,7 @@ fn hello(name: &str, age: i8) -> String {
#[get("/hello/<name>/<age>", rank = 2)]
fn hi(name: &str, age: &str) -> String {
format!("Hi {}! You age ({}) is kind of funky.", name, age)
format!("Hi {}! Your age ({}) is kind of funky.", name, age)
}
fn main() {