From f575acaf5ff4aa0abf402d0ad758e722ebd31df4 Mon Sep 17 00:00:00 2001 From: kgv Date: Sun, 29 Mar 2015 23:26:31 +0300 Subject: [PATCH] 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 --- src/doc/trpl/arrays-vectors-and-slices.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/doc/trpl/arrays-vectors-and-slices.md b/src/doc/trpl/arrays-vectors-and-slices.md index fb56e4a676784..2916dca2c06b0 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.