We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 61115cd + d6ef6e0 commit 4e4e5bfCopy full SHA for 4e4e5bf
compiler/rustc_error_codes/src/error_codes/E0726.md
@@ -25,8 +25,8 @@ block_on(future);
25
26
Specify desired lifetime of parameter `content` or indicate the anonymous
27
lifetime like `content: Content<'_>`. The anonymous lifetime tells the Rust
28
-compiler that `content` is only needed until create function is done with
29
-it's execution.
+compiler that `content` is only needed until the `create` function is done with
+its execution.
30
31
The `implicit elision` meaning the omission of suggested lifetime that is
32
`pub async fn create<'a>(content: Content<'a>) {}` is not allowed here as
0 commit comments