File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
branches/try/src/doc/trpl Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 3e561f05c00cd180ec02db4ccab2840a4aba93d2
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: ba0e1cd8147d452c356aacb29fb87568ca26f111
5
- refs/heads/try: ff1dcba342442c211e021ef68c5153c710f1fe8e
5
+ refs/heads/try: 16b60cf003cab3624c0b79acd9c5eedec6d1ed37
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
8
8
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
Original file line number Diff line number Diff line change @@ -176,8 +176,8 @@ Here's the error:
176
176
^~~~~~~~~~~~~
177
177
```
178
178
179
- You see, [ ` Mutex ` ] ( std/sync/struct.Mutex.html ) has a
180
- [ ` lock ` ] ( http://doc.rust-lang.org/nightly /std/sync/struct.Mutex.html#method.lock)
179
+ You see, [ ` Mutex ` ] ( ../ std/sync/struct.Mutex.html) has a
180
+ [ ` lock ` ] ( .. /std/sync/struct.Mutex.html#method.lock)
181
181
method which has this signature:
182
182
183
183
``` ignore
Original file line number Diff line number Diff line change @@ -297,5 +297,5 @@ It's worth noting that you can only use `try!` from a function that returns a
297
297
` Result ` , which means that you cannot use ` try! ` inside of ` main() ` , because
298
298
` main() ` doesn't return anything.
299
299
300
- ` try! ` makes use of [ ` From<Error> ` ] ( ../std/convert/trait.From.hml ) to determine
300
+ ` try! ` makes use of [ ` From<Error> ` ] ( ../std/convert/trait.From.html ) to determine
301
301
what to return in the error case.
Original file line number Diff line number Diff line change 33
33
You may have seen the ` vec! ` macro, used to initialize a [ vector] [ ] with any
34
34
number of elements.
35
35
36
- [ vector ] : arrays- vectors-and-slices .html
36
+ [ vector ] : vectors.html
37
37
38
38
``` rust
39
39
let x : Vec <u32 > = vec! [1 , 2 , 3 ];
You can’t perform that action at this time.
0 commit comments