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 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;