Auto merge of #27418 - taliesinb:tarpl-typo, r=alexcrichton
this makes the second code block consistent with the first code block -- other than being in reversed order, the first code block claims b is u16 and c is u32, whereas the second code block claims the opposite. seems to be an obvious typo.
This commit is contained in:
commit
89bc9fa8be
1 changed files with 2 additions and 2 deletions
|
|
@ -31,8 +31,8 @@ type's size is a multiple of its alignment. For instance:
|
|||
```rust
|
||||
struct A {
|
||||
a: u8,
|
||||
c: u32,
|
||||
b: u16,
|
||||
b: u32,
|
||||
c: u16,
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue