From 4d586c5006da3a24fd451d238c9f213047063325 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Fri, 30 Jun 2017 18:36:59 -0700 Subject: [PATCH] Checkout the current tag in quickstart guide. --- site/guide/quickstart.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/site/guide/quickstart.md b/site/guide/quickstart.md index 0bcbba9e..a4746d53 100644 --- a/site/guide/quickstart.md +++ b/site/guide/quickstart.md @@ -12,10 +12,12 @@ Rocket repository and run the included examples in the `examples/` directory. For instance, the following set of commands runs the `hello_world` example: ```sh -git clone https://github.com/SergioBenitez/rocket -cd rocket/examples/hello_world +git clone https://github.com/SergioBenitez/Rocket +cd Rocket +git checkout v0.2.8 +cd examples/hello_world cargo run ``` -There are numerous examples. They can all be run with `cargo run`. - +There are numerous examples in the `examples/` directory. They can all be run +with `cargo run`.