From 42e0b8bc7eff10902679e7c9a7556ff43f25ec58 Mon Sep 17 00:00:00 2001 From: Chris C Cerami Date: Mon, 12 Oct 2015 22:24:51 -0400 Subject: [PATCH] Fix Lifetime Elision link in lifetimes.md --- src/doc/trpl/lifetimes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/lifetimes.md b/src/doc/trpl/lifetimes.md index 23569dd1b917e..aea0fdcce5dad 100644 --- a/src/doc/trpl/lifetimes.md +++ b/src/doc/trpl/lifetimes.md @@ -74,7 +74,7 @@ associated with it, but the compiler lets you elide (i.e. omit, see ["Lifetime Elision"][lifetime-elision] below) them in common cases. Before we get to that, though, let’s break the explicit example down: -[lifetime-elision]: #user-content-lifetime-elision +[lifetime-elision]: #lifetime-elision ```rust,ignore fn bar<'a>(...)