Skip to content

Commit 4357621

Browse files
committed
book: there is no guessing game anymore, so remove references to it
1 parent 199bdcf commit 4357621

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

src/doc/trpl/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ navigate through the menu on the left.
1111
<h2 class="section-header"><a href="basic.html">Basics</a></h2>
1212

1313
This section is a linear introduction to the basic syntax and semantics of
14-
Rust. It has individual sections on each part of Rust's syntax, and culminates
15-
in a small project: a guessing game.
14+
Rust. It has individual sections on each part of Rust's syntax.
1615

1716
After reading "Basics," you will have a good foundation to learn more about
1817
Rust, and can write very simple programs.

src/doc/trpl/arrays-vectors-and-slices.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,5 @@ You can also take a slice of a vector, `String`, or `&str`, because they are
9999
backed by arrays. Slices have type `&[T]`, which we'll talk about when we cover
100100
generics.
101101

102-
We have now learned all of the most basic Rust concepts. We're ready to start
103-
building ourselves a guessing game, we just need to know one last thing: how to
104-
get input from the keyboard. You can't have a guessing game without the ability
105-
to guess!
102+
We have now learned all of the most basic Rust concepts. Next, we learn how to
103+
get input from the keyboard.

src/doc/trpl/basic.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
% Basics
22

33
This section is a linear introduction to the basic syntax and semantics of
4-
Rust. It has individual sections on each part of Rust's syntax, and cumulates
5-
in a small project: a guessing game.
4+
Rust. It has individual sections on each part of Rust's syntax.
65

76
After reading "Basics," you will have a good foundation to learn more about
87
Rust, and can write very simple programs.

src/doc/trpl/compound-data-types.md

-1
Original file line numberDiff line numberDiff line change
@@ -361,5 +361,4 @@ and brittle `if`/`else`s.
361361

362362
[arity]: ./glossary.html#arity
363363
[match]: ./match.html
364-
[game]: ./guessing-game.html#comparing-guesses
365364
[generics]: ./generics.html

0 commit comments

Comments
 (0)