about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Astley <mca@sanger.ac.uk>2015-06-10 16:15:24 +0100
committerMatthew Astley <mca@sanger.ac.uk>2015-06-10 16:16:03 +0100
commitaaf1983a5688683fa7514f273b86c030e9c7b92a (patch)
tree8da9e83fd79b997d3a0791b7f88551fb41e91949
parent1ece0058382c234dc64ce596eb62b1f636632566 (diff)
downloadrust-aaf1983a5688683fa7514f273b86c030e9c7b92a.tar.gz
rust-aaf1983a5688683fa7514f273b86c030e9c7b92a.zip
mend bad Markdown
-rw-r--r--src/doc/trpl/functions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/functions.md b/src/doc/trpl/functions.md
index f2113031655..ea927707ecd 100644
--- a/src/doc/trpl/functions.md
+++ b/src/doc/trpl/functions.md
@@ -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