Skip to content

Commit aaf1983

Browse files
committed
mend bad Markdown
1 parent 1ece005 commit aaf1983

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Note that assigning to an already-bound variable (e.g. `y = 5`) is still an
145145
expression, although its value is not particularly useful. Unlike other
146146
languages where an assignment evaluates to the assigned value (e.g. `5` in the
147147
previous example), in Rust the value of an assignment is an empty tuple `()`
148-
because the assigned value can have (just one owner)[ownership.html], and any
148+
because the assigned value can have [just one owner](ownership.html), and any
149149
other returned value would be too surprising:
150150

151151
```rust

0 commit comments

Comments
 (0)