diff --git a/exercises/07_special_lifetimes/README.md b/exercises/07_special_lifetimes/README.md index 28710c7..e37332e 100644 --- a/exercises/07_special_lifetimes/README.md +++ b/exercises/07_special_lifetimes/README.md @@ -8,7 +8,7 @@ There are two special lifetimes in Rust. It's worth discussing them both: # The `static` lifetime Some things in your program are guaranteed to last forever. The most common reason for this -is when they're information bundled inside your binary. For example, when you write +is when their information is bundled inside your binary. For example, when you write a program like this: ``` rust @@ -160,9 +160,3 @@ All of these lifetimes can be replaced with either `'_` or `'static`. Your task is to replace every occurance of the lifetimes `'a` and `'b` with either `'_` or `'static`, to remove excessive lifetime declarations, and to ensure your code still compiles. - -### Footnote on Out of Date Information - -The Rust Edition Guide previously contained a section -about anonymous lifetimes. The most popular google result -is now [this article](https://yegeun542.github.io/rust-edition-guide-ko/rust-2018/ownership-and-lifetimes/the-anonymous-lifetime.html) but I recommend disregarding it, as it is out of date information.