Skip to content

Commit

Permalink
Adds missing cd
Browse files Browse the repository at this point in the history
  • Loading branch information
O-I committed Oct 3, 2014
1 parent 816c56e commit d3f8f8a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/doc/guide.md
Expand Up @@ -2617,7 +2617,7 @@ Rust's more unique features.

Rust features a strong module system, but it works a bit differently than in
other programming languages. Rust's module system has two main components:
**crate**s, and **module**s.
**crate**s and **module**s.

A crate is Rust's unit of independent compilation. Rust always compiles one
crate at a time, producing either a library or an executable. However, executables
Expand All @@ -2638,6 +2638,7 @@ Enough talk, let's build something! Let's make a new project called `modules`.
```{bash,ignore}
$ cd ~/projects
$ cargo new modules --bin
$ cd modules
```

Let's double check our work by compiling:
Expand Down

0 comments on commit d3f8f8a

Please sign in to comment.