From 123c684f6298fb81f6faf7a7b0ca3c1daa04c749 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Mon, 19 Dec 2016 01:57:13 -0800 Subject: [PATCH] Revert hello_person to pre-testing. --- examples/hello_person/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }