about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAstroide <65875137+Astroide@users.noreply.github.com>2023-05-06 12:42:52 -0400
committerGitHub <noreply@github.com>2023-05-06 12:42:52 -0400
commitb2acf3ea640bd46c4a12ee80c702ec95d3f87f16 (patch)
tree8c0251c1a8d91a18b017389ab8181719b75efa46
parent333b920feeb136d35fac804d51310df1a35c399e (diff)
downloadrust-b2acf3ea640bd46c4a12ee80c702ec95d3f87f16.tar.gz
rust-b2acf3ea640bd46c4a12ee80c702ec95d3f87f16.zip
rustc --explain E0726 - grammar fixing (it's => its + add a `the` where it felt right to do so)
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0726.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0726.md b/compiler/rustc_error_codes/src/error_codes/E0726.md
index e3794327f2d..8941849065e 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0726.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0726.md
@@ -25,8 +25,8 @@ block_on(future);
 
 Specify desired lifetime of parameter `content` or indicate the anonymous
 lifetime like `content: Content<'_>`. The anonymous lifetime tells the Rust
-compiler that `content` is only needed until create function is done with
-it's execution.
+compiler that `content` is only needed until the create function is done with
+its execution.
 
 The `implicit elision` meaning the omission of suggested lifetime that is
 `pub async fn create<'a>(content: Content<'a>) {}` is not allowed here as