Skip to content

Commit 0bd1163

Browse files
committed
I missed some ;(
1 parent 41ca263 commit 0bd1163

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/types/boolean.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ r[type.bool.layout]
2121
An object with the boolean type has a [size and alignment] of 1 each.
2222

2323
r[type.bool.repr]
24-
A `bool` is represented as a single initialized byte with a value of `0x00` corresponding to `false` and a value of `0x01` corresponding to `true`.
24+
A `bool` is represented as a single initialized byte with a value of `0x00` corresponding to `false` and a value of `0x01` corresponding to `true`.
2525

2626
> [!NOTE]
2727
> No other representations are valid for `bool`. Undefined Behaviour occurs when any other byte is read as type `bool`.

src/types/pointer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ A wide pointer or reference is represented the same as `struct WidePointer<M>{da
111111

112112
> [!NOTE]
113113
> The `WidePointer` struct has no guarantees about layout, and has the default representation.
114-
> In particular, it is not guaranteed that you can write a struct type with the same layout as `WidePointer<M>`.
114+
> In particular, it is not guaranteed that you can write a struct type with the same layout as `WidePointer<M>`.
115115
116116
## Pointer Provenance
117117

0 commit comments

Comments
 (0)