diff --git a/examples/hello_person/src/main.rs b/examples/hello_person/src/main.rs index 0526724a..43f08fc7 100644 --- a/examples/hello_person/src/main.rs +++ b/examples/hello_person/src/main.rs @@ -16,5 +16,5 @@ fn hi<'r>(name: &'r str) -> &'r str { } fn main() { - rocket::ignite().mount("/", routes![hello, hi]).launch(); + rocket::ignite().mount("/", routes![hello, hi]).launch(); }