about summary refs log tree commit diff
path: root/compiler/rustc_error_codes
diff options
context:
space:
mode:
authorJoakim Ã…kerblom <per.joakim.eriksson@gmail.com>2021-01-24 20:31:42 +0100
committerJoakim Ã…kerblom <per.joakim.eriksson@gmail.com>2021-01-24 20:31:42 +0100
commit1d03648e67b2dc3ea86a8d7f6f0c376142d500e5 (patch)
tree87132c7c282549e1cd73b63feaf3b95d27a4e76c /compiler/rustc_error_codes
parent9a9477fada5baf69d693e717d6df902e411a73d6 (diff)
downloadrust-1d03648e67b2dc3ea86a8d7f6f0c376142d500e5.tar.gz
rust-1d03648e67b2dc3ea86a8d7f6f0c376142d500e5.zip
Fix spelling in documentation for error E0207
I have trouble parsing the the wording "type parameter parameter".
Diffstat (limited to 'compiler/rustc_error_codes')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0207.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0207.md b/compiler/rustc_error_codes/src/error_codes/E0207.md
index cb4f5d5157d..8a7923ac93f 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0207.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0207.md
@@ -14,7 +14,7 @@ impl<T: Default> Foo {
 }
 ```
 
-Any type parameter parameter of an `impl` must meet at least one of
+Any type parameter of an `impl` must meet at least one of
 the following criteria:
 
  - it appears in the _implementing type_ of the impl, e.g. `impl<T> Foo<T>`