Skip to content

Rollup of 20 pull requests #33487

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 42 commits into from
May 7, 2016
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
f7e1421
Add `TAGS.rustc.emacs`/`TAGS.rustc.vi` make targets, (re-)including r…
pnkfelix Apr 28, 2016
27c01cb
Add process types documentation
GuillaumeGomez Apr 28, 2016
47d9f49
Remove rust flags from doc block
GuillaumeGomez May 1, 2016
e3f1312
dep_graph: avoid panicking in thread when channel closed
birkenfeld May 1, 2016
eba43fb
std::thread docs: spawn() returns not a Thread anymore
birkenfeld May 1, 2016
b75f81c
parser: do not try to continue with `unsafe` on foreign fns
birkenfeld May 2, 2016
a11ddb3
Replace copy-pasted variable name with relevant one
shepmaster May 4, 2016
2ca3120
errors in the doc
kindlychung May 4, 2016
16219de
Update iterator.rs
kindlychung May 4, 2016
8facc97
Add detailed error explanation for E0506
cramertj May 3, 2016
d1c487e
Add an example to Wrapping's documentation.
fiveop May 5, 2016
a22ca28
[Doc] Default cpu is "generic" (and not "default")
phil-opp May 5, 2016
39eec80
mk: Fix building with --enable-ccache
alexcrichton May 1, 2016
2912bfb
doc: Update reference with better description of target_env
brson May 5, 2016
26eb2be
Fix some some duplicate words.
birkenfeld May 5, 2016
10599e4
doc: make RFC references consistent
birkenfeld May 5, 2016
89aa042
rustdoc: add "src" links to individual impls
birkenfeld May 3, 2016
32edf1d
Fix Typo in Barrier::wait documentation
CryZe May 6, 2016
40025e8
Indicate struct names are code-like in doc-comment.
frewsxcv May 6, 2016
f25cbe6
Add detailed error explanation for E0389
cramertj May 4, 2016
8e9008d
doc: mut not needed
tshepang May 5, 2016
9f935c8
doc: binding not needed
tshepang May 5, 2016
9e6141e
Rollup merge of #33256 - pnkfelix:add-rustc-specific-tags-files, r=ni…
steveklabnik May 7, 2016
93285f8
Rollup merge of #33283 - GuillaumeGomez:process_doc, r=steveklabnik
steveklabnik May 7, 2016
9991be3
Rollup merge of #33313 - birkenfeld:depgraph-panic, r=nikomatsakis
steveklabnik May 7, 2016
4e41e8b
Rollup merge of #33314 - alexcrichton:fix-enable-ccache, r=pnkfelix
steveklabnik May 7, 2016
b651b2c
Rollup merge of #33326 - birkenfeld:issue-33321, r=GuillaumeGomez
steveklabnik May 7, 2016
a816217
Rollup merge of #33336 - birkenfeld:issue-27361, r=sfackler
steveklabnik May 7, 2016
76d6030
Rollup merge of #33382 - birkenfeld:issue-30416, r=alexcrichton
steveklabnik May 7, 2016
04f2972
Rollup merge of #33384 - cramertj:E0506, r=arielb1
steveklabnik May 7, 2016
769ec1e
Rollup merge of #33402 - shepmaster:copied-variable-name, r=Manishearth
steveklabnik May 7, 2016
e09ad1d
Rollup merge of #33409 - kindlychung:patch-2, r=steveklabnik
steveklabnik May 7, 2016
be61c6d
Rollup merge of #33410 - GuillaumeGomez:explain, r=Manishearth
steveklabnik May 7, 2016
0b8a3d5
Rollup merge of #33412 - cramertj:E0389, r=Manishearth
steveklabnik May 7, 2016
aec36f6
Rollup merge of #33428 - fiveop:wrapping_example, r=steveklabnik
steveklabnik May 7, 2016
f569b59
Rollup merge of #33430 - phil-opp:patch-1, r=alexcrichton
steveklabnik May 7, 2016
1ce9405
Rollup merge of #33437 - brson:trips, r=Manishearth
steveklabnik May 7, 2016
aa63f54
Rollup merge of #33438 - birkenfeld:dup-words, r=steveklabnik
steveklabnik May 7, 2016
b68254f
Rollup merge of #33439 - birkenfeld:ip-rfc-refs, r=steveklabnik
steveklabnik May 7, 2016
f4453bb
Rollup merge of #33442 - tshepang:trim, r=steveklabnik
steveklabnik May 7, 2016
099e087
Rollup merge of #33456 - CryZe:barrier-wait-docs, r=GuillaumeGomez
steveklabnik May 7, 2016
84e2773
Rollup merge of #33459 - frewsxcv:patch-29, r=guillaumegomez
steveklabnik May 7, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
doc: mut not needed
  • Loading branch information
tshepang committed May 6, 2016
commit 8e9008dc307f97f596add6cbb27d3b1ca1b88d4a
2 changes: 1 addition & 1 deletion src/libstd/io/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
//!
//! # fn foo() -> io::Result<()> {
//! let f = try!(File::open("foo.txt"));
//! let mut reader = BufReader::new(f);
//! let reader = BufReader::new(f);
//!
//! for line in reader.lines() {
//! let line = try!(line);
Expand Down