Skip to content

Commit 39efe09

Browse files
author
Keegan McAllister
committed
---
yaml --- r: 135750 b: refs/heads/auto c: e382802 h: refs/heads/master v: v3
1 parent 461e20b commit 39efe09

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1313
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1414
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1515
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
16-
refs/heads/auto: 4ced7a9637c10196883733fa81ac67d02269a76e
16+
refs/heads/auto: e3828026d5d037c49cc982ecf4fbe97a8f8fb7e1
1717
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1818
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1919
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

branches/auto/src/doc/complement-design-faq.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ representation as a primitive. This allows using Rust `enum`s in FFI where C
3939
`enum`s are also used, for most use cases. The attribute can also be applied
4040
to `struct`s to get the same layout as a C struct would.
4141

42-
[repr]: http://doc.rust-lang.org/rust.html#miscellaneous-attributes
42+
[repr]: rust.html#miscellaneous-attributes
4343

4444
## There is no GC
4545

@@ -56,7 +56,7 @@ Types which are [`Sync`][sync] are thread-safe when multiple shared
5656
references to them are used concurrently. Types which are not `Sync` are not
5757
thread-safe, and thus when used in a global require unsafe code to use.
5858

59-
[sync]: http://doc.rust-lang.org/core/kinds/trait.Sync.html
59+
[sync]: core/kinds/trait.Sync.html
6060

6161
### If mutable static items that implement `Sync` are safe, why is taking &mut SHARABLE unsafe?
6262

@@ -139,8 +139,8 @@ and explicitly calling the `clone` method. Making user-defined copy operators
139139
explicit surfaces the underlying complexity, forcing the developer to opt-in
140140
to potentially expensive operations.
141141

142-
[copy]: http://doc.rust-lang.org/core/kinds/trait.Copy.html
143-
[clone]: http://doc.rust-lang.org/core/clone/trait.Clone.html
142+
[copy]: core/kinds/trait.Copy.html
143+
[clone]: core/clone/trait.Clone.html
144144

145145
## No move constructors
146146

branches/auto/src/doc/guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1843,9 +1843,9 @@ that page, but the best part is the search bar. Right up at the top, there's
18431843
a box that you can enter in a search term. The search is pretty primitive
18441844
right now, but is getting better all the time. If you type 'random' in that
18451845
box, the page will update to [this
1846-
one](http://doc.rust-lang.org/std/index.html?search=random). The very first
1846+
one](std/index.html?search=random). The very first
18471847
result is a link to
1848-
[std::rand::random](http://doc.rust-lang.org/std/rand/fn.random.html). If we
1848+
[std::rand::random](std/rand/fn.random.html). If we
18491849
click on that result, we'll be taken to its documentation page.
18501850

18511851
This page shows us a few things: the type signature of the function, some
@@ -3723,7 +3723,7 @@ If you use `Rc<T>` or `Arc<T>`, you have to be careful about introducing
37233723
cycles. If you have two `Rc<T>`s that point to each other, the reference counts
37243724
will never drop to zero, and you'll have a memory leak. To learn more, check
37253725
out [the section on `Rc<T>` and `Arc<T>` in the pointers
3726-
guide](http://doc.rust-lang.org/guide-pointers.html#rc-and-arc).
3726+
guide](guide-pointers.html#rc-and-arc).
37273727

37283728
# Patterns
37293729

@@ -5336,6 +5336,6 @@ you will have a firm grasp of basic Rust development. There's a whole lot more
53365336
out there, we've just covered the surface. There's tons of topics that you can
53375337
dig deeper into, and we've built specialized guides for many of them. To learn
53385338
more, dig into the [full documentation
5339-
index](http://doc.rust-lang.org/index.html).
5339+
index](index.html).
53405340

53415341
Happy hacking!

0 commit comments

Comments
 (0)