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:
bors 2015-07-31 17:55:22 +00:00
commit 89bc9fa8be

View file

@ -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,
}
```