Skip to content

Commit d3f8f8a

Browse files
committed
Adds missing cd
1 parent 816c56e commit d3f8f8a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/doc/guide.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2617,7 +2617,7 @@ Rust's more unique features.
26172617

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

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

26432644
Let's double check our work by compiling:

0 commit comments

Comments
 (0)