File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed 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