From 76ce355f6843439cda2994fe717cc44ef550288c Mon Sep 17 00:00:00 2001 From: Chris Barrett <chris@codesaru.com> Date: Thu, 2 Jan 2025 14:24:21 -0500 Subject: [PATCH] Fix 404 in Lifetimes README.md Link to Lifetimes (in Rust By Example) leads to a 404 page. Removing the "/stable" slug fixes this. --- exercises/16_lifetimes/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/16_lifetimes/README.md b/exercises/16_lifetimes/README.md index 91373f73..728e7335 100644 --- a/exercises/16_lifetimes/README.md +++ b/exercises/16_lifetimes/README.md @@ -18,5 +18,5 @@ learning to write lifetime annotations. ## Further information -- [Lifetimes (in Rust By Example)](https://doc.rust-lang.org/stable/rust-by-example/scope/lifetime.html) +- [Lifetimes (in Rust By Example)](https://doc.rust-lang.org/rust-by-example/scope/lifetime.html) - [Validating References with Lifetimes](https://doc.rust-lang.org/book/ch10-03-lifetime-syntax.html)