Manish Goregaokar
55437b4a57
Rollup merge of #25215 - acgtyrant:patch-2, r=alexcrichton
...
Fix wrong radius valve from 0.0 to 1.0 as above
2015-05-09 00:37:45 +05:30
Manish Goregaokar
4b4cb86248
Rollup merge of #25195 - simonkern:master, r=steveklabnik
...
I deleted one unneccessary 'the' and added the href for [bindings]
2015-05-09 00:37:43 +05:30
Manish Goregaokar
b02270963c
Rollup merge of #25181 - steveklabnik:fix_curlies, r=alexcrichton
2015-05-09 00:37:43 +05:30
Manish Goregaokar
61c1cf7f74
Rollup merge of #25179 - bengesoff:patch-1, r=steveklabnik
...
Following paragraph says "we've used `*` which..." but code says "rand=\"0.3.0\""
2015-05-09 00:37:42 +05:30
Isaac Ge
962816bc29
Update method-syntax.md
...
Fix wrong radius valve from 0.0 to 1.0 as above
2015-05-08 22:39:25 +08:00
Andrew Straw
391d14802e
fix logic when describing kinds of borrows
...
If you have 0 references (`&T`) to a resource, presumably, you could
have a mutable reference (`&mut T`). So this only start to make sense
at having 1 reference to a resource.
2015-05-08 06:12:59 +02:00
Simon Kern
60c0e75e74
fixed href for structs
2015-05-08 01:46:26 +02:00
Simon Kern
3e76f2838a
v2 gets a copy of the pointer, not a copy of the data
2015-05-08 01:43:18 +02:00
Simon Kern
84c7dfa48c
deleted unnecessary the
2015-05-08 00:59:45 +02:00
Simon Kern
2213898c19
two minor fixes
2015-05-08 00:42:10 +02:00
Ben Gesoff
888086d959
Undid changes involving misunderstanding of 0.3.x
...
Didn't realise 0.3.0 referred to all 0.3.x versions! Fixed my mistakes. Should have just updated the Cargo.toml now.
2015-05-07 15:36:47 +01:00
Steve Klabnik
07499918b3
Fix incorrect curly quotes
2015-05-07 10:26:00 -04:00
Ben Gesoff
0bc6fe5ea0
Refactor to keep rand version 0.3.0
...
changed paragraphs with discussion of Cargo.lock file to agree with rand version 0.3.0 in the Cargo.tom file.
2015-05-07 14:48:44 +01:00
Ben Gesoff
7150d3cd9e
Change rand version to '*'
...
Following paragraph says "we've used `*` which..." but code says "rand=\"0.3.0\""
2015-05-07 14:23:05 +01:00
Steve Klabnik
5ac5203e6e
Rollup merge of #25173 - andreastt:guessing_game_syntax_fix, r=steveklabnik
2015-05-07 12:21:05 +02:00
Steve Klabnik
464077d0a7
Rollup merge of #25156 - rydotyosh:patch-4, r=alexcrichton
...
Remove printing of secret number at final source.
2015-05-07 12:21:04 +02:00
Steve Klabnik
6db57a2dcb
Rollup merge of #25154 - rydotyosh:patch-3, r=steveklabnik
...
Edit version of #25150 .
This commit depends on #25148 .
2015-05-07 12:21:04 +02:00
Steve Klabnik
414e37f3d4
Rollup merge of #25148 - banks:master, r=steveklabnik
...
Let me know if I didn't follow correct procedure - seems a trivial change and no one that can be automatically tested.
2015-05-07 12:21:04 +02:00
Steve Klabnik
0ad94ae126
Rollup merge of #25141 - steveklabnik:fix_guessing_game, r=huonw
...
https://github.com/rust-lang/rust/pull/25080/files#r29634986
r? @huonw
2015-05-07 12:21:03 +02:00
Steve Klabnik
888c12ccbb
Rollup merge of #25139 - hibariya:fix-indentation, r=alexcrichton
2015-05-07 12:21:03 +02:00
Andreas Tolfsen
9f84260138
doc: fix syntax error in Guessing Game
2015-05-07 11:59:33 +02:00
らいどっと
1884c87207
doc: Fix remove secret number at final source
...
Remove printing of secret number at final source.
2015-05-07 02:20:31 +09:00
らいどっと
08923fbff2
doc: Fix remove unused variable
...
This commit depends on #25148 .
2015-05-07 01:58:55 +09:00
Paul Banks
81b90bd56f
Correct initial guessing game example. Fixes #25147 . r? @steveklabnik
2015-05-06 14:00:35 +01:00
Steve Klabnik
fc9bc779d2
Fix explanation of Cargo's behavior
...
https://github.com/rust-lang/rust/pull/25080/files#r29634986
2015-05-06 04:18:56 -04:00
Hika Hibariya
705f355e53
Fix indentation in the "Strings" chapter
2015-05-06 09:45:30 +09:00
Steve Klabnik
8aaafeaf79
Rollup merge of #25112 - jsyeo:jsyeo-while-let, r=alexcrichton
...
The indentation in this example is messed up. The `_ => break,` line was using a tab instead of spaces to indent.
2015-05-05 16:56:01 -04:00
Steve Klabnik
477cf9c606
Rollup merge of #25080 - steveklabnik:guessing_game, r=alexcrichton
...
This also made me realize that I wasn't using the correct term,
'associated functions', rather than 'static methods'. So I corrected
that in the method syntax chapter.
2015-05-05 16:56:01 -04:00
Steve Klabnik
1eae884f39
Rollup merge of #24782 - steveklabnik:doc_ownership, r=nikomatsakis
...
Also, as @huonw guessed, move semantics really _does_ make more sense as
a sub-chapter of ownership.
2015-05-05 16:56:01 -04:00
Steve Klabnik
9d512fdd19
TRPL: guessing game
...
This also made me realize that I wasn't using the correct term,
'associated functions', rather than 'static methods'. So I corrected
that in the method syntax chapter.
2015-05-05 16:54:34 -04:00
Steve Klabnik
ab3cb8c5ae
TRPL: ownership, borrowing, and lifetimes
...
Also, as @huonw guessed, move semantics really _does_ make more sense as
a sub-chapter of ownership.
2015-05-05 14:27:31 -04:00
Jason Yeo
0476586643
Fix indentation in while-let example
2015-05-05 12:02:18 +08:00
Manish Goregaokar
135502ef00
Rollup merge of #25109 - alexcrichton:fix-doc-crates-io-link, r=steveklabnik
...
Right now it's all hosted over GitHub pages so https doesn't work, so only link
to the http version.
2015-05-05 09:24:48 +05:30
Manish Goregaokar
aff0782b23
Rollup merge of #25104 - brson:rustup, r=alexcrichton
2015-05-05 09:24:29 +05:30
Manish Goregaokar
b8fedad89b
Rollup merge of #25068 - bguiz:patch-3, r=steveklabnik
...
- `File::open` is for opening a file in read-only mode
- `File::create` is for opening a file in write-only mode, which is what we want instead for this example to make sense
2015-05-05 09:23:36 +05:30
Alex Crichton
2c04696978
doc: Cargo documentation doesn't have https
...
Right now it's all hosted over GitHub pages so https doesn't work, so only link
to the http version.
2015-05-04 16:25:02 -07:00
Brian Anderson
2de6515de8
doc: rustup.sh doesn't require sudo
2015-05-04 13:23:27 -07:00
bors
165a8dec9c
Auto merge of #25055 - bguiz:patch-2, r=steveklabnik
...
- I found n error in the book, before contributing the patch to fix it, I had to find where they were hosted
- It took me quite look to find where within the rust-lang *organisation* it was! ... and this should make it easier for the next person in the same position
2015-05-04 09:11:27 +00:00
bors
77ce30f038
Auto merge of #24990 - steveklabnik:doc_associated_constants, r=alexcrichton
2015-05-03 22:42:33 +00:00
Brendan Graetz
75a3e29042
=BG= minor: File::open --> File::create in rust book
...
- `FIle::open` is for opening a file in read-only mode
- `FIle::create` is for opening a file in write-only mode, which is what we want instead for this example to make sense
2015-05-03 20:42:47 +10:00
bors
0d7d3ec9d2
Auto merge of #25058 - steveklabnik:gh25008, r=huonw
...
Fixes #25008
2015-05-02 20:47:32 +00:00
Steve Klabnik
6b465f5c87
TRPL: associated constants
2015-05-02 11:58:30 -04:00
Steve Klabnik
df18642b1a
Revise @ in patterns section
...
Fixes #25008
2015-05-02 11:56:58 -04:00
Brendan Graetz
3eee2b9319
=BG= minor: add link to book source files
...
- I found n error in the book, before contributing the patch to fix it, I had to find where they were hosted
- It took me quite look to find where within the rust-lang *organisation* it was!
2015-05-02 22:40:07 +10:00
Brendan Graetz
07ff8279be
=BG= minor: ensure correct range bounds in concurreny examples in the rust book
...
- `0..2` iterates over `0,1`
- `0..3` iterates over `0,1,2`, which is what we want instead
2015-05-02 22:29:53 +10:00
Jordan Humphreys
f2a19b39fb
Correct typo in introduction
...
Correct 'danging' to 'dangling'.
2015-05-01 16:54:57 -07:00
Manish Goregaokar
4aab003b60
Rollup merge of #24998 - steveklabnik:fix_links, r=alexcrichton
...
r? @alexcrichton
2015-05-01 20:20:20 +05:30
Manish Goregaokar
0855b7c8b5
Rollup merge of #24994 - steveklabnik:gh24977, r=alexcrichton
...
Fixes #24977
2015-05-01 20:20:20 +05:30
Manish Goregaokar
d3b7c5258f
Rollup merge of #24992 - steveklabnik:gh24730, r=alexcrichton
...
Fixes #24730
r? @alexcrichton
2015-05-01 20:20:20 +05:30
Manish Goregaokar
4fda7e8b38
Rollup merge of #24991 - steveklabnik:gh24852, r=alexcrichton
...
First, a link was broken.
Second, the wording was a bit unclear, so I fixed it up.
Fixes #24852
2015-05-01 20:20:19 +05:30