Skip to content

Commit b4ae21f

Browse files
committed
requested clarification
1 parent 94429de commit b4ae21f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

reference/src/glossary.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ In this case, both `r` and `s` alias each other, since they both point to all of
2727
the bytes of `u`.
2828

2929
However, `head` and `tail` do not alias each other: `head` points to the first
30-
byte of `u` and `tail` points to the other seven bytes of `u` after it.
30+
byte of `u` and `tail` points to the other seven bytes of `u` after it. Also,
31+
both `head` and `tail` alias `s`.
3132

3233
* The span length of `&T`, `&mut T`, `*const T`, or `*mut T` when `T` is
3334
[`Sized`](https://doc.rust-lang.org/core/marker/trait.Sized.html) is

0 commit comments

Comments
 (0)