Skip to content

Commit 2cbdb58

Browse files
committed
Fix "Line must not end with spaces" for the 3rd time this PR
1 parent 0823313 commit 2cbdb58

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/memory-model.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ r[memory.byte.uninit]
3535
r[memory.encoding]
3636

3737
r[memory.encoding.intro]
38-
Each type in Rust has 0 or more values, which can have operations performed on them. Values are represented in memory by encoding them
38+
Each type in Rust has 0 or more values, which can have operations performed on them. Values are represented in memory by encoding them
3939

4040
> [!NOTE]
4141
> `0u8`, `1337i16`, and `Foo{bar: "baz"}` are all values
@@ -44,7 +44,7 @@ r[memory.encoding.op]
4444
Each type defines a pair of properties which, together, define the representation of values of the type. The *encode* operation takes a value of the type and converts it into a sequence of bytes equal in length to the size of the type, and the *decode* operation takes such a sequence of bytes and optionally converts it into a value. Encoding occurs when a value is written to memory, and decoding occurs when a value is read from memory.
4545

4646
> [!NOTE]
47-
> Only certain byte sequences may decode into a value of a given type. For example, a byte sequence consisting of all zeroes does not decode to a value of a reference type.
47+
> Only certain byte sequences may decode into a value of a given type. For example, a byte sequence consisting of all zeroes does not decode to a value of a reference type.
4848
4949
r[memory.encoding.representation]
5050
A sequence of bytes is said to represent a value of a type, if the decode operation for that type produces that value from that sequence of bytes. The representation of a type is the partial relation between byte sequences and values those sequences represent.
@@ -56,11 +56,11 @@ r[memory.encoding.symmetric]
5656
The result of encoding a given value of a type is a sequence of bytes that represents that value.
5757

5858
> [!NOTE]
59-
> This means that a value can be copied into memory and copied out and the result is the same value.
59+
> This means that a value can be copied into memory and copied out and the result is the same value.
6060
> The reverse is not necessarily true, a sequence of bytes read as a value then written to another location (called a typed copy) will not necessarily yield the same sequence of bytes. For example, a typed copy of a struct type will leave the padding bytes of that struct uninitialized.
6161
6262
r[memory.encoding.decode]
63-
If a value of type `T` is decoded from a sequence of bytes that does not represent any value, the behavior is undefined.
63+
If a value of type `T` is decoded from a sequence of bytes that does not represent any value, the behavior is undefined.
6464

6565
> [!NOTE]
66-
> For example, it is undefined behavior to read a `0x02` byte as `bool`.
66+
> For example, it is undefined behavior to read a `0x02` byte as `bool`.

0 commit comments

Comments
 (0)