Add missing semicolon to pastebin tutorial code.

This commit is contained in:
Karuna Murti 2017-07-17 10:24:58 +09:00 committed by Sergio Benitez
parent 69afb5c4a3
commit 5720748557

View File

@ -57,7 +57,7 @@ And finally, create a skeleton Rocket application to work off of in
extern crate rocket;
fn main() {
rocket::ignite().launch()
rocket::ignite().launch();
}
```