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:49:49 +0530
committerAyush Kumar Mishra <ayush.k.mishra@xcelenergy.com>2020-03-13 10:49:49 +0530
commit00c6abe92fdde4d2385413b656ad34e883c54fbc (patch)
tree562f928984fde8c6862478f961e15d333d35d7ae /src/librustc_error_codes/error_codes
parentf7fcb589cf88bdd10f8573554de065142f9e5e70 (diff)
downloadrust-00c6abe92fdde4d2385413b656ad34e883c54fbc.tar.gz
rust-00c6abe92fdde4d2385413b656ad34e883c54fbc.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 40040c9a56a..2ae4d833fd5 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 1 parameter for the generator. For example, we might resolve
+at most one parameter for the generator. For example, we might resolve
 the previous example by passing only one parameter.
 
 ```