Fix 404 in Lifetimes README.md

Link to Lifetimes (in Rust By Example) leads to a 404 page.  Removing the "/stable" slug fixes this.
This commit is contained in:
Chris Barrett 2025-01-02 14:24:21 -05:00 committed by GitHub
parent 1aec7c1152
commit 76ce355f68
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)