From e1acf87fe0fe3b64be0750dc7d1244558a626a91 Mon Sep 17 00:00:00 2001 From: Willy Aguirre Date: Mon, 28 Sep 2015 10:46:50 -0500 Subject: [PATCH 1/2] remove a sentence #28701 --- src/doc/trpl/iterators.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/doc/trpl/iterators.md b/src/doc/trpl/iterators.md index b52e0fefa57e2..6d1e66b67334f 100644 --- a/src/doc/trpl/iterators.md +++ b/src/doc/trpl/iterators.md @@ -281,8 +281,7 @@ If you are trying to execute a closure on an iterator for its side effects, just use `for` instead. There are tons of interesting iterator adapters. `take(n)` will return an -iterator over the next `n` elements of the original iterator. Note that this -has no side effect on the original iterator. Let's try it out with our infinite +iterator over the next `n` elements of the original iterator. Let's try it out with our infinite iterator from before: ```rust From 7f9c4aaa09b278f054a655f65f436b94fa71422b Mon Sep 17 00:00:00 2001 From: Willy Aguirre Date: Mon, 28 Sep 2015 12:11:18 -0500 Subject: [PATCH 2/2] fixes #17017 (update padding:11px line 142 of rustbook.css) --- src/rustbook/static/rustbook.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rustbook/static/rustbook.css b/src/rustbook/static/rustbook.css index 3755338f427df..ba0151fa2ed47 100644 --- a/src/rustbook/static/rustbook.css +++ b/src/rustbook/static/rustbook.css @@ -139,7 +139,7 @@ h1, h2, h3, h4, h5, h6 { } pre { - padding: 16px; + padding: 11px; overflow: auto; font-size: 85%; line-height: 1.45;