Skip to content

Commit 4e4e5bf

Browse files
authored
Rollup merge of rust-lang#111293 - Astroide:patch-1, r=compiler-errors
rustc --explain E0726 - grammar fixing (it's => its + add a `the` where it felt right to do so) Very small fix
2 parents 61115cd + d6ef6e0 commit 4e4e5bf

File tree

1 file changed

+2
-2
lines changed
  • compiler/rustc_error_codes/src/error_codes

1 file changed

+2
-2
lines changed

compiler/rustc_error_codes/src/error_codes/E0726.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ block_on(future);
2525

2626
Specify desired lifetime of parameter `content` or indicate the anonymous
2727
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.
28+
compiler that `content` is only needed until the `create` function is done with
29+
its execution.
3030

3131
The `implicit elision` meaning the omission of suggested lifetime that is
3232
`pub async fn create<'a>(content: Content<'a>) {}` is not allowed here as

0 commit comments

Comments
 (0)