diff options
| author | Rageking8 <tomleetyt@gmail.com> | 2022-10-13 00:12:19 +0800 |
|---|---|---|
| committer | Rageking8 <tomleetyt@gmail.com> | 2022-10-13 00:53:46 +0800 |
| commit | d1982bd0af0ac3e9bc0b1e3bf596a1a5c84e60af (patch) | |
| tree | 0ea5cee5b1a24c63436fd259e5bad2306e6b7fce /compiler/rustc_error_codes | |
| parent | 50f6d337c632cbb5bd1dc3a80b5d428cebd8dce4 (diff) | |
| download | rust-d1982bd0af0ac3e9bc0b1e3bf596a1a5c84e60af.tar.gz rust-d1982bd0af0ac3e9bc0b1e3bf596a1a5c84e60af.zip | |
fix small word dupe typos
Diffstat (limited to 'compiler/rustc_error_codes')
| -rw-r--r-- | compiler/rustc_error_codes/src/error_codes/E0591.md | 4 |
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: |
