Skip to content

Commit 236998f

Browse files
committed
---
yaml --- r: 118013 b: refs/heads/try c: 3482ab3 h: refs/heads/master i: 118011: a45dc21 v: v3
1 parent 6f8638a commit 236998f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 3770c42a4959cbabc73da52abc7e3db96657974e
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: d6736a1440d42f6af967a8a20ab8d73522112b72
5-
refs/heads/try: bee42a9413f0ecc65110b16846fb92ae1ba91dba
5+
refs/heads/try: 3482ab3699784d5fa838b8e3ddbef9dee19bce2d
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/librustdoc/html/render.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,10 +1094,10 @@ impl<'a> Item<'a> {
10941094
let path = cache.external_paths.get(&self.item.def_id);
10951095
let root = match *cache.extern_locations.get(&self.item.def_id.krate) {
10961096
Remote(ref s) => s.to_string(),
1097-
Local => format!("{}/..", self.cx.root_path),
1097+
Local => self.cx.root_path.clone(),
10981098
Unknown => return None,
10991099
};
1100-
Some(format!("{root}/{path}/{file}?gotosrc={goto}",
1100+
Some(format!("{root}{path}/{file}?gotosrc={goto}",
11011101
root = root,
11021102
path = path.slice_to(path.len() - 1).connect("/"),
11031103
file = item_path(self.item),

branches/try/src/libstd/macros.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -331,11 +331,11 @@ macro_rules! vec(
331331
)
332332

333333

334-
/// A macro to select an event from a number of receivers.
334+
/// A macro to select an event from a number of ports.
335335
///
336336
/// 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.
339339
///
340340
/// # Example
341341
///

0 commit comments

Comments
 (0)