diff options
| author | kgv <mail@kgv.name> | 2015-03-29 23:26:31 +0300 |
|---|---|---|
| committer | kgv <mail@kgv.name> | 2015-03-29 23:26:31 +0300 |
| commit | f575acaf5ff4aa0abf402d0ad758e722ebd31df4 (patch) | |
| tree | a4732afa806cb35f2722e93ae72a7b3d3262fce6 | |
| parent | c5370be36ec6601c4a816f0341d1acd81e08d345 (diff) | |
| download | rust-f575acaf5ff4aa0abf402d0ad758e722ebd31df4.tar.gz rust-f575acaf5ff4aa0abf402d0ad758e722ebd31df4.zip | |
Remove about standard io chapter from the book (from arrays-vectors-and-slices chapter)
Remove the last sentence about standard io chapter. Additional Fixes #23760
| -rw-r--r-- | src/doc/trpl/arrays-vectors-and-slices.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/doc/trpl/arrays-vectors-and-slices.md b/src/doc/trpl/arrays-vectors-and-slices.md index fb56e4a6767..2916dca2c06 100644 --- a/src/doc/trpl/arrays-vectors-and-slices.md +++ b/src/doc/trpl/arrays-vectors-and-slices.md @@ -99,5 +99,4 @@ 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. Next, we learn how to -get input from the keyboard. +We have now learned all of the most basic Rust concepts. |
