summaryrefslogtreecommitdiffstats
path: root/src/doc/rust-by-example/src/meta/doc.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/rust-by-example/src/meta/doc.md')
-rw-r--r--src/doc/rust-by-example/src/meta/doc.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rust-by-example/src/meta/doc.md b/src/doc/rust-by-example/src/meta/doc.md
index 63e0b4101..e9e51186f 100644
--- a/src/doc/rust-by-example/src/meta/doc.md
+++ b/src/doc/rust-by-example/src/meta/doc.md
@@ -44,7 +44,7 @@ impl Person {
/// Gives a friendly hello!
///
- /// Says "Hello, [name]" to the `Person` it is called on.
+ /// Says "Hello, [name](Person::name)" to the `Person` it is called on.
pub fn hello(& self) {
println!("Hello, {}!", self.name);
}