Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

book: there is no guessing game anymore, so remove references to it #23764

Merged
merged 1 commit into from
Mar 28, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/doc/trpl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ navigate through the menu on the left.
<h2 class="section-header"><a href="basic.html">Basics</a></h2>

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

After reading "Basics," you will have a good foundation to learn more about
Rust, and can write very simple programs.
Expand Down
6 changes: 2 additions & 4 deletions src/doc/trpl/arrays-vectors-and-slices.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,5 @@ You can also take a slice of a vector, `String`, or `&str`, because they are
backed by arrays. Slices have type `&[T]`, which we'll talk about when we cover
generics.

We have now learned all of the most basic Rust concepts. We're ready to start
building ourselves a guessing game, we just need to know one last thing: how to
get input from the keyboard. You can't have a guessing game without the ability
to guess!
We have now learned all of the most basic Rust concepts. Next, we learn how to
get input from the keyboard.
3 changes: 1 addition & 2 deletions src/doc/trpl/basic.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
% Basics

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

After reading "Basics," you will have a good foundation to learn more about
Rust, and can write very simple programs.
1 change: 0 additions & 1 deletion src/doc/trpl/compound-data-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,5 +361,4 @@ and brittle `if`/`else`s.

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