diff --git a/README.md b/README.md index 97c407b..f7eb85f 100644 --- a/README.md +++ b/README.md @@ -7073,7 +7073,7 @@ help: consider using the `'static` lifetime | ^^^^^^^^ ``` -`missing lifetime specifier` means that we need to add a `'` with the lifetime. Then it says that it `contains a borrowed value, but there is no value for it to be borrowed from`. That means that `I am a str` isn't borrowed from anything. It says `consider using the 'static lifetime` by writing `&'static str`. So it thinks we should try saying that this is a string literal. +`missing lifetime specifier` means that we need to add `a'` with the lifetime. Then it says that it `contains a borrowed value, but there is no value for it to be borrowed from`. That means that `I am a str` isn't borrowed from anything. It says `consider using the 'static lifetime` by writing `&'static str`. So it thinks we should try saying that this is a string literal. Now it works: