about summary refs log tree commit diff
path: root/compiler/rustc_error_codes
diff options
context:
space:
mode:
authorAstroide <65875137+Astroide@users.noreply.github.com>2023-05-06 19:39:08 -0400
committerGitHub <noreply@github.com>2023-05-06 19:39:08 -0400
commitd6ef6e0080848e710c8dc655041dbd5ccaa9f3c1 (patch)
tree63824b0e7f4fb73ce758ae8512f163bbddc83e9d /compiler/rustc_error_codes
parentb2acf3ea640bd46c4a12ee80c702ec95d3f87f16 (diff)
downloadrust-d6ef6e0080848e710c8dc655041dbd5ccaa9f3c1.tar.gz
rust-d6ef6e0080848e710c8dc655041dbd5ccaa9f3c1.zip
Update compiler/rustc_error_codes/src/error_codes/E0726.md
Co-authored-by: Michael Goulet <michael@errs.io>
Diffstat (limited to 'compiler/rustc_error_codes')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0726.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0726.md b/compiler/rustc_error_codes/src/error_codes/E0726.md
index 8941849065e..a721e746ecd 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0726.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0726.md
@@ -25,7 +25,7 @@ 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 the create function is done with
+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