We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3649a77 + 4d0eacf commit a0d7549Copy full SHA for a0d7549
reference/src/glossary.md
@@ -33,7 +33,7 @@ byte of `u` and `tail` points to the other seven bytes of `u` after it. Both `he
33
and `tail` alias `s`, any overlap is sufficient to count as an alias.
34
35
* 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)
+* For a type `T` that is [`Sized`](https://doc.rust-lang.org/core/marker/trait.Sized.html)
37
The span length of a pointer or reference to `T` is found with `size_of::<T>()`.
38
* When `T` is not `Sized` the story is a little tricker:
39
* If you have a reference `r` you can use `size_of_val(r)` to determine the
0 commit comments