Skip to content

Commit 6108e8c

Browse files
committed
Auto merge of #28705 - marti1125:master, r=steveklabnik
#28701
2 parents a305b06 + 7f9c4aa commit 6108e8c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Diff for: src/doc/trpl/iterators.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,7 @@ If you are trying to execute a closure on an iterator for its side effects,
281281
just use `for` instead.
282282

283283
There are tons of interesting iterator adapters. `take(n)` will return an
284-
iterator over the next `n` elements of the original iterator. Note that this
285-
has no side effect on the original iterator. Let's try it out with our infinite
284+
iterator over the next `n` elements of the original iterator. Let's try it out with our infinite
286285
iterator from before:
287286

288287
```rust

Diff for: src/rustbook/static/rustbook.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ h1, h2, h3, h4, h5, h6 {
139139
}
140140

141141
pre {
142-
padding: 16px;
142+
padding: 11px;
143143
overflow: auto;
144144
font-size: 85%;
145145
line-height: 1.45;

0 commit comments

Comments
 (0)