Skip to content

Rollup of 13 pull requests #36864

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 27 commits into from
Sep 30, 2016
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
fe62b41
Clarify Index/IndexMut trait docs
bluss Sep 16, 2016
f6ab636
Update to new macro url syntax
GuillaumeGomez Sep 16, 2016
dfa0940
Add missing urls for Box doc
GuillaumeGomez Sep 19, 2016
323701e
Fix some typos and improve doc comments style
GuillaumeGomez Sep 21, 2016
0a72b4d
Suggesting a change to a comment that puzzled me
pcn Sep 25, 2016
4e7338a
Add missing links on cmp module
GuillaumeGomez Sep 26, 2016
c30eb31
Use "through"
pcn Sep 27, 2016
5cec065
Add missing urls for ops module
GuillaumeGomez Sep 28, 2016
e5e632b
Fix typo in RELEASES.md
apasel422 Sep 29, 2016
01a57a2
Reword description of SystemTimeError.
tmiasko Sep 28, 2016
3176ba4
Improve process module doc a bit
GuillaumeGomez Sep 29, 2016
e9d3e62
Fixed wrong link in release notes
deepinthebuild Sep 29, 2016
1e8f692
Fix BufRead::{read_until, read_line} documentation.
tmiasko Sep 29, 2016
a5244dd
Add `Send` and `Sync` traits to the reference
wesleywiser Sep 30, 2016
f6497ea
Rollup merge of #36529 - bluss:index-doc, r=GuillaumeGomez
steveklabnik Sep 30, 2016
dcec48d
Rollup merge of #36535 - GuillaumeGomez:macro_url, r=steveklabnik
steveklabnik Sep 30, 2016
71a4bde
Rollup merge of #36576 - GuillaumeGomez:box_urls, r=steveklabnik
steveklabnik Sep 30, 2016
cabfa99
Rollup merge of #36623 - GuillaumeGomez:doc_typos, r=steveklabnik
steveklabnik Sep 30, 2016
431c037
Rollup merge of #36711 - pcn:patch-1, r=steveklabnik
steveklabnik Sep 30, 2016
083af27
Rollup merge of #36750 - GuillaumeGomez:cmp_doc, r=steveklabnik
steveklabnik Sep 30, 2016
fb880df
Rollup merge of #36810 - GuillaumeGomez:ops_doc, r=steveklabnik
steveklabnik Sep 30, 2016
c2977ea
Rollup merge of #36829 - apasel422:releases-typo, r=alexcrichton
steveklabnik Sep 30, 2016
a6f0a41
Rollup merge of #36833 - tmiasko:system-time-error, r=steveklabnik
steveklabnik Sep 30, 2016
e3e5f1f
Rollup merge of #36841 - GuillaumeGomez:process_doc, r=steveklabnik
steveklabnik Sep 30, 2016
ce8c6f6
Rollup merge of #36842 - cjm00:release-notes-fix, r=brson
steveklabnik Sep 30, 2016
ebd1ad3
Rollup merge of #36851 - tmiasko:fix-read-until-docs, r=bluss
steveklabnik Sep 30, 2016
af1df98
Rollup merge of #36860 - wesleywiser:patch-2, r=Manishearth
steveklabnik Sep 30, 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
Suggesting a change to a comment that puzzled me
While reading this, the comment made it difficult for me to simply absorb the concept.  It interrupted my reading flow, and I think this expresses the same meaning, but reads a bit better.
  • Loading branch information
pcn authored Sep 25, 2016
commit 0a72b4dc9fa6f32483bdce84bd5f64164cc1787d
2 changes: 1 addition & 1 deletion src/doc/book/references-and-borrowing.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ fn main() {
return v.iter().fold(0, |a, &b| a + b);
}
// Borrow two vectors and sum them.
// This kind of borrowing does not allow mutation to the borrowed.
// This kind of borrowing does not allow mutation to the borrowed reference.
fn foo(v1: &Vec<i32>, v2: &Vec<i32>) -> i32 {
// do stuff with v1 and v2
let s1 = sum_vec(v1);
Expand Down