diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2022-10-13 09:41:27 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-13 09:41:27 +0900 |
| commit | 0ace46f98cb79227b82f1ddfda3129b7503bdcb1 (patch) | |
| tree | f2549ae7f44a18a08046f0fa2004347c4110e45e /compiler/rustc_error_codes/src | |
| parent | 18b1342f236cac3893ecbf7fba0848e612e075a9 (diff) | |
| parent | d1982bd0af0ac3e9bc0b1e3bf596a1a5c84e60af (diff) | |
| download | rust-0ace46f98cb79227b82f1ddfda3129b7503bdcb1.tar.gz rust-0ace46f98cb79227b82f1ddfda3129b7503bdcb1.zip | |
Rollup merge of #102974 - Rageking8:fix-small-word-dupe-typos, r=JohnTitor
Fix small word dupe typos
Diffstat (limited to 'compiler/rustc_error_codes/src')
| -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: |
