Merge branch 'master' of github.com:SergioBenitez/rocket

This commit is contained in:
Sergio Benitez 2016-09-22 21:29:06 -07:00
commit b911c0b73a

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() {