File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: bee42a9413f0ecc65110b16846fb92ae1ba91dba
2
+ refs/heads/master: 3482ab3699784d5fa838b8e3ddbef9dee19bce2d
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: ec0258a381b88b5574e3f8ce72ae553ac3a574b7
5
5
refs/heads/try: 7c6c492fb2af9a85f21ff952942df3523b22fd17
Original file line number Diff line number Diff line change @@ -1094,10 +1094,10 @@ impl<'a> Item<'a> {
1094
1094
let path = cache. external_paths . get ( & self . item . def_id ) ;
1095
1095
let root = match * cache. extern_locations . get ( & self . item . def_id . krate ) {
1096
1096
Remote ( ref s) => s. to_string ( ) ,
1097
- Local => format ! ( "{}/.." , self . cx. root_path) ,
1097
+ Local => self . cx . root_path . clone ( ) ,
1098
1098
Unknown => return None ,
1099
1099
} ;
1100
- Some ( format ! ( "{root}/ {path}/{file}?gotosrc={goto}" ,
1100
+ Some ( format ! ( "{root}{path}/{file}?gotosrc={goto}" ,
1101
1101
root = root,
1102
1102
path = path. slice_to( path. len( ) - 1 ) . connect( "/" ) ,
1103
1103
file = item_path( self . item) ,
Original file line number Diff line number Diff line change @@ -331,11 +331,11 @@ macro_rules! vec(
331
331
)
332
332
333
333
334
- /// A macro to select an event from a number of receivers .
334
+ /// A macro to select an event from a number of ports .
335
335
///
336
336
/// This macro is used to wait for the first event to occur on a number of
337
- /// receivers . It places no restrictions on the types of receivers given to
338
- /// this macro, this can be viewed as a heterogeneous select.
337
+ /// ports . It places no restrictions on the types of ports given to this macro,
338
+ /// this can be viewed as a heterogeneous select.
339
339
///
340
340
/// # Example
341
341
///
You can’t perform that action at this time.
0 commit comments