about summary refs log tree commit diff
path: root/src/librustc_error_codes/error_codes
diff options
context:
space:
mode:
authorAyush Mishra <ayushmishra2005@gmail.com>2020-03-13 08:14:45 +0530
committerGitHub <noreply@github.com>2020-03-13 08:14:45 +0530
commitf7fcb589cf88bdd10f8573554de065142f9e5e70 (patch)
tree7fcb55b47871a403a65b9923e134c7d65ab1efce /src/librustc_error_codes/error_codes
parent1305ae6813d66a5c2898f67224d20d00604f37a7 (diff)
downloadrust-f7fcb589cf88bdd10f8573554de065142f9e5e70.tar.gz
rust-f7fcb589cf88bdd10f8573554de065142f9e5e70.zip
Update src/librustc_error_codes/error_codes/E0628.md
Co-Authored-By: Dylan DPC <dylan.dpc@gmail.com>
Diffstat (limited to 'src/librustc_error_codes/error_codes')
-rw-r--r--src/librustc_error_codes/error_codes/E0628.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0628.md b/src/librustc_error_codes/error_codes/E0628.md
index 75214d69b88..40040c9a56a 100644
--- a/src/librustc_error_codes/error_codes/E0628.md
+++ b/src/librustc_error_codes/error_codes/E0628.md
@@ -16,7 +16,7 @@ fn main() {
 
 At present, it is not permitted to pass more than one explicit
 parameter for a generator.This can be fixed by using
-0 or 1 parameter for generator. So, for example, we might resolve
+at most 1 parameter for the generator. For example, we might resolve
 the previous example by passing only one parameter.
 
 ```