We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3780045 commit 790a244Copy full SHA for 790a244
rfcs/0000-unaligned-fn-ptr.md
@@ -50,7 +50,7 @@ Transmuting any non-null value to a function pointer is defined behavior.
50
51
```rust
52
fn good() {
53
- let x: fn() = unsafe { mem::transmute(1usize) } // This not UB.
+ let x: fn() = unsafe { mem::transmute(1usize) } // This is not UB.
54
}
55
```
56
0 commit comments