Skip to content

Commit a0d7549

Browse files
committed
Merge branch 'lokathor' of https://github.com/Lokathor/unsafe-code-guidelines into lokathor
2 parents 3649a77 + 4d0eacf commit a0d7549

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/src/glossary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ byte of `u` and `tail` points to the other seven bytes of `u` after it. Both `he
3333
and `tail` alias `s`, any overlap is sufficient to count as an alias.
3434

3535
* The span of a pointer or reference is the size of the value being pointed to or referenced.
36-
* For some type `T` that is [`Sized`](https://doc.rust-lang.org/core/marker/trait.Sized.html)
36+
* For a type `T` that is [`Sized`](https://doc.rust-lang.org/core/marker/trait.Sized.html)
3737
The span length of a pointer or reference to `T` is found with `size_of::<T>()`.
3838
* When `T` is not `Sized` the story is a little tricker:
3939
* If you have a reference `r` you can use `size_of_val(r)` to determine the

0 commit comments

Comments
 (0)