Skip to content

Commit 44d03f0

Browse files
committed
Follow on to #100 to fix breakage
1 parent d5a1557 commit 44d03f0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/expressions/field-expr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A _field expression_ consists of an expression followed by a single dot and an
44
[identifier](identifiers.html), when not immediately followed by a
55
parenthesized expression-list (the latter is always a [method call
6-
expression](#method-call-expressions)). A field expression denotes a field of a
6+
expression](method-call-expr.html)). A field expression denotes a field of a
77
[struct](types.html#struct-types) or [union](items/unions.html). To call a
88
function stored in a struct parentheses are needed around the field expression
99

src/expressions/path-expr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A [path](paths.html) used as an expression context denotes either a local
44
variable or an item. Path expressions that resolve to local or static variables
55
are [lvalues](expressions.html#lvalues-and-rvalues), other paths
66
are rvalues. Using a `static mut` variable requires an [`unsafe`
7-
block](#unsafe-blocks).
7+
block](block-expr.html#unsafe-blocks).
88

99
```rust
1010
# mod globals {

src/interior-mutability.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ borrow checks to ensure the usual rules around multiple references. The
2020
accessed with atomic operations, allowing the value to be shared and mutated
2121
across threads.
2222

23-
[shared reference]: types.html#shared-references
23+
[shared reference]: types.html#shared-references-
2424
[ub]: behavior-considered-undefined.html
2525
[`std::mem::transmute`]: ../std/mem/fn.transmute.html
2626
[`std::cell::UnsafeCell<T>`]: ../std/cell/struct.UnsafeCell.html
2727
[`std::cell::RefCell<T>`]: ../std/cell/struct.RefCell.html
28-
[`std::sync::atomic`]: ../std/sync/atomic.html
28+
[`std::sync::atomic`]: ../std/sync/atomic/index.html
2929

3030

0 commit comments

Comments
 (0)