From fc58ace60cf53daa824610eb7ab14452d0b2b1fa Mon Sep 17 00:00:00 2001 From: Nathaniel Ringo Date: Fri, 26 May 2017 20:03:20 -0500 Subject: [PATCH] Fixes formatting. A line starting with `2.` unfortunately emits `
    `, causing the bad formatting seen here: http://i.imgur.com/iaZHmIg.png --- src/repr-rust.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/repr-rust.md b/src/repr-rust.md index c02cf44..7001d32 100644 --- a/src/repr-rust.md +++ b/src/repr-rust.md @@ -4,8 +4,8 @@ First and foremost, all types have an alignment specified in bytes. The alignment of a type specifies what addresses are valid to store the value at. A value of alignment `n` must only be stored at an address that is a multiple of `n`. So alignment 2 means you must be stored at an even address, and 1 means -that you can be stored anywhere. Alignment is at least 1, and always a power of -2. Most primitives are generally aligned to their size, although this is +that you can be stored anywhere. Alignment is at least 1, and always a power +of 2. Most primitives are generally aligned to their size, although this is platform-specific behavior. In particular, on x86 `u64` and `f64` may be only aligned to 32 bits.