diff --git a/repr-rust.md b/repr-rust.md index 9073495..c8a372b 100644 --- a/repr-rust.md +++ b/repr-rust.md @@ -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, } ```