about summary refs log tree commit diff
path: root/compiler/rustc_error_codes/src
diff options
context:
space:
mode:
authorRageking8 <tomleetyt@gmail.com>2022-10-13 00:12:19 +0800
committerRageking8 <tomleetyt@gmail.com>2022-10-13 00:53:46 +0800
commitd1982bd0af0ac3e9bc0b1e3bf596a1a5c84e60af (patch)
tree0ea5cee5b1a24c63436fd259e5bad2306e6b7fce /compiler/rustc_error_codes/src
parent50f6d337c632cbb5bd1dc3a80b5d428cebd8dce4 (diff)
downloadrust-d1982bd0af0ac3e9bc0b1e3bf596a1a5c84e60af.tar.gz
rust-d1982bd0af0ac3e9bc0b1e3bf596a1a5c84e60af.zip
fix small word dupe typos
Diffstat (limited to 'compiler/rustc_error_codes/src')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0591.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0591.md b/compiler/rustc_error_codes/src/error_codes/E0591.md
index f49805d9b4e..6ed8370e8c1 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0591.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0591.md
@@ -53,8 +53,8 @@ unsafe {
 ```
 
 Here, transmute is being used to convert the types of the fn arguments.
-This pattern is incorrect because, because the type of `foo` is a function
-**item** (`typeof(foo)`), which is zero-sized, and the target type (`fn()`)
+This pattern is incorrect because the type of `foo` is a function **item**
+(`typeof(foo)`), which is zero-sized, and the target type (`fn()`)
 is a function pointer, which is not zero-sized.
 This pattern should be rewritten. There are a few possible ways to do this: