Skip to content

Commit e7bb51f

Browse files
authored
Merge pull request #25 from remexre/patch-1
Fixes formatting on repr(Rust) page.
2 parents 95e43bc + fc58ace commit e7bb51f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/repr-rust.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ First and foremost, all types have an alignment specified in bytes. The
44
alignment of a type specifies what addresses are valid to store the value at. A
55
value of alignment `n` must only be stored at an address that is a multiple of
66
`n`. So alignment 2 means you must be stored at an even address, and 1 means
7-
that you can be stored anywhere. Alignment is at least 1, and always a power of
8-
2. Most primitives are generally aligned to their size, although this is
7+
that you can be stored anywhere. Alignment is at least 1, and always a power
8+
of 2. Most primitives are generally aligned to their size, although this is
99
platform-specific behavior. In particular, on x86 `u64` and `f64` may be only
1010
aligned to 32 bits.
1111

0 commit comments

Comments
 (0)