Removed {} and small wording fixes to "Hello Cargo!" chapter.

This commit is contained in:
Alexander Bliskovsky 2015-02-23 16:35:47 -05:00
parent 0685e7a185
commit f49fd40f20

View File

@ -26,7 +26,7 @@ To Cargo-ify our project, we need to do two things: Make a `Cargo.toml`
configuration file, and put our source file in the right place. Let's
do that part first:
```{bash}
```bash
$ mkdir src
$ mv main.rs src/main.rs
```
@ -38,7 +38,7 @@ place for everything, and everything in its place.
Next, our configuration file:
```{bash}
```bash
$ editor Cargo.toml
```
@ -75,7 +75,7 @@ well as what it is named.
Once you have this file in place, we should be ready to build! Try this:
```{bash}
```bash
$ cargo build
Compiling hello_world v0.0.1 (file:///home/yourname/projects/hello_world)
$ ./target/hello_world
@ -113,7 +113,7 @@ can start developing right away.
To start a new project with Cargo, use `cargo new`:
```{bash}
```bash
$ cargo new hello_world --bin
```
@ -122,7 +122,7 @@ were making a library, we'd leave it off.
Let's check out what Cargo has generated for us:
```{bash}
```bash
$ cd hello_world
$ tree .
.
@ -138,7 +138,7 @@ manager. It's not necessary, but it's certainly useful.
This is all we need to get started. First, let's check out `Cargo.toml`:
```{toml}
```toml
[package]
name = "hello_world"
@ -146,13 +146,13 @@ version = "0.0.1"
authors = ["Your Name <you@example.com>"]
```
Cargo has populated this file with reasonable defaults based off the arguments
you gave it and your Git global config. You may notice that Cargo has also initialized
the `hello_world` directory as a Git repository.
Cargo has populated this file with reasonable defaults based off the arguments you gave
it and your `git` global configuration. You may notice that Cargo has also initialized
the `hello_world` directory as a `git` repository.
Here's what's in `src/main.rs`:
```{rust}
```rust
fn main() {
println!("Hello, world!");
}