about summary refs log tree commit diff
path: root/src/librustc_error_codes/error_codes
diff options
context:
space:
mode:
authorAyush Kumar Mishra <ayush.k.mishra@xcelenergy.com>2020-03-13 10:52:41 +0530
committerAyush Kumar Mishra <ayush.k.mishra@xcelenergy.com>2020-03-13 10:52:41 +0530
commitc33c88bcbd5d9d41262f23d637fcad1ec3ab7c53 (patch)
tree7fcb55b47871a403a65b9923e134c7d65ab1efce /src/librustc_error_codes/error_codes
parent00c6abe92fdde4d2385413b656ad34e883c54fbc (diff)
downloadrust-c33c88bcbd5d9d41262f23d637fcad1ec3ab7c53.tar.gz
rust-c33c88bcbd5d9d41262f23d637fcad1ec3ab7c53.zip
Minor change
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 2ae4d833fd5..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
-at most one parameter for the generator. 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.
 
 ```