Skip to content

Commit 0794ed5

Browse files
author
Keegan McAllister
committed
---
yaml --- r: 135378 b: refs/heads/snap-stage3 c: e382802 h: refs/heads/master v: v3
1 parent 0cb4d69 commit 0794ed5

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
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 74090504219e4e37c1a6d9fdd8600f44b51c7b04
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 4ced7a9637c10196883733fa81ac67d02269a76e
4+
refs/heads/snap-stage3: e3828026d5d037c49cc982ecf4fbe97a8f8fb7e1
55
refs/heads/try: 14378ea357c06c23607ca61ade44f60a7a64a1c7
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/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/snap-stage3/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)