diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-10-14 09:53:40 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-10-14 12:50:55 +0530 |
| commit | 5dc2955f917c0ddecd539656e7eccaf020112be0 (patch) | |
| tree | 4611ebb5ef022bcc48c60a907e7bc61c79e80388 | |
| parent | cdefef203bc7f8b9825760129a8684a878af61da (diff) | |
| parent | 42e0b8bc7eff10902679e7c9a7556ff43f25ec58 (diff) | |
| download | rust-5dc2955f917c0ddecd539656e7eccaf020112be0.tar.gz rust-5dc2955f917c0ddecd539656e7eccaf020112be0.zip | |
Rollup merge of #29013 - chrisccerami:fix_broken_lifetime_elision_link, r=alexcrichton
This link was added in #28842 but doesn't work at https://doc.rust-lang.org/nightly/book/lifetimes.html. What works in my markdown preview doesn't work live, and vice versa.
| -rw-r--r-- | src/doc/trpl/lifetimes.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/lifetimes.md b/src/doc/trpl/lifetimes.md index 0a6e2745e3d..13265ab1eba 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>(...) |
