about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-09-28 23:56:41 +0000
committerbors <bors@rust-lang.org>2015-09-28 23:56:41 +0000
commit6108e8c3e5e5768d9862ba0f66f44cbca098d015 (patch)
treef225b58c49ea4dc26a63af19f4b00da96ec3a0c2
parenta305b0624b164fd0b0b5558b837288429247cdaf (diff)
parent7f9c4aaa09b278f054a655f65f436b94fa71422b (diff)
Auto merge of #28705 - marti1125:master, r=steveklabnik
#28701 
-rw-r--r--src/doc/trpl/iterators.md3
-rw-r--r--src/rustbook/static/rustbook.css2
2 files changed, 2 insertions, 3 deletions
diff --git a/src/doc/trpl/iterators.md b/src/doc/trpl/iterators.md
index b52e0fefa57..6d1e66b6733 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 3755338f427..ba0151fa2ed 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;