about summary refs log tree commit diff
path: root/src/librustc_error_codes/error_codes
diff options
context:
space:
mode:
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 8aa0724bac7..75214d69b88 100644
--- a/src/librustc_error_codes/error_codes/E0628.md
+++ b/src/librustc_error_codes/error_codes/E0628.md
@@ -15,7 +15,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 only
+parameter for a generator.This can be fixed by using
 0 or 1 parameter for generator. So, for example, we might resolve
 the previous example by passing only one parameter.