From b36890b06957dcd2f3a27548f53394d395818eec Mon Sep 17 00:00:00 2001 From: Taliesin Beynon Date: Thu, 30 Jul 2015 23:16:56 -0400 Subject: [PATCH] fix switched-round 'b' and 'c' --- src/doc/tarpl/repr-rust.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/tarpl/repr-rust.md b/src/doc/tarpl/repr-rust.md index 639d64adc18..f9e811298de 100644 --- a/src/doc/tarpl/repr-rust.md +++ b/src/doc/tarpl/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, } ``` -- 2.44.0