Skip to content

Commit c4700e0

Browse files
committed
Follow on to previous commit
Apparently all links are relative to the root, not to the page, so I messed this up.
1 parent 44d03f0 commit c4700e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/expressions/field-expr.md

+1-1
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-expr.html)). A field expression denotes a field of a
6+
expression](expressions/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

+1-1
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](block-expr.html#unsafe-blocks).
7+
block](expressions/block-expr.html#unsafe-blocks).
88

99
```rust
1010
# mod globals {

0 commit comments

Comments
 (0)