Skip to content

Commit

Permalink
mend bad Markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
mcast committed Jun 10, 2015
1 parent 1ece005 commit aaf1983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/trpl/functions.md
Expand Up @@ -145,7 +145,7 @@ Note that assigning to an already-bound variable (e.g. `y = 5`) is still an
expression, although its value is not particularly useful. Unlike other
languages where an assignment evaluates to the assigned value (e.g. `5` in the
previous example), in Rust the value of an assignment is an empty tuple `()`
because the assigned value can have (just one owner)[ownership.html], and any
because the assigned value can have [just one owner](ownership.html), and any
other returned value would be too surprising:

```rust
Expand Down

0 comments on commit aaf1983

Please sign in to comment.