Skip to content

Rollup of 21 pull requests #33486

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

Closed
wants to merge 44 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
44 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
3371b8a
Add detailed error explanation for E0504
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
e4b424b
Rollup merge of #33256 - pnkfelix:add-rustc-specific-tags-files, r=ni…
steveklabnik May 7, 2016
ba6678c
Rollup merge of #33283 - GuillaumeGomez:process_doc, r=steveklabnik
steveklabnik May 7, 2016
1d0a607
Rollup merge of #33313 - birkenfeld:depgraph-panic, r=nikomatsakis
steveklabnik May 7, 2016
6a3f601
Rollup merge of #33314 - alexcrichton:fix-enable-ccache, r=pnkfelix
steveklabnik May 7, 2016
3e3b8ba
Rollup merge of #33326 - birkenfeld:issue-33321, r=GuillaumeGomez
steveklabnik May 7, 2016
031d722
Rollup merge of #33336 - birkenfeld:issue-27361, r=sfackler
steveklabnik May 7, 2016
6a92ac7
Rollup merge of #33382 - birkenfeld:issue-30416, r=alexcrichton
steveklabnik May 7, 2016
2926fe4
Rollup merge of #33384 - cramertj:E0506, r=arielb1
steveklabnik May 7, 2016
054a3b7
Rollup merge of #33386 - cramertj:E0504, r=steveklabnik
steveklabnik May 7, 2016
d23afd9
Rollup merge of #33402 - shepmaster:copied-variable-name, r=Manishearth
steveklabnik May 7, 2016
2d26c01
Rollup merge of #33409 - kindlychung:patch-2, r=steveklabnik
steveklabnik May 7, 2016
00e3092
Rollup merge of #33410 - GuillaumeGomez:explain, r=Manishearth
steveklabnik May 7, 2016
6ae1ac8
Rollup merge of #33412 - cramertj:E0389, r=Manishearth
steveklabnik May 7, 2016
067d4fe
Rollup merge of #33428 - fiveop:wrapping_example, r=steveklabnik
steveklabnik May 7, 2016
443a55e
Rollup merge of #33430 - phil-opp:patch-1, r=alexcrichton
steveklabnik May 7, 2016
13fbb05
Rollup merge of #33437 - brson:trips, r=Manishearth
steveklabnik May 7, 2016
fd92cba
Rollup merge of #33438 - birkenfeld:dup-words, r=steveklabnik
steveklabnik May 7, 2016
8ed1e7c
Rollup merge of #33439 - birkenfeld:ip-rfc-refs, r=steveklabnik
steveklabnik May 7, 2016
f092a13
Rollup merge of #33442 - tshepang:trim, r=steveklabnik
steveklabnik May 7, 2016
1a8ec46
Rollup merge of #33456 - CryZe:barrier-wait-docs, r=GuillaumeGomez
steveklabnik May 7, 2016
1d044c5
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