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.
1 parent 98d750a commit d37282bCopy full SHA for d37282b
src/subtyping.md
@@ -183,8 +183,8 @@ to trying to explain:
183
The types with \*'s are the ones we will be focusing on, as they are in
184
some sense "fundamental". All the others can be understood by analogy to the others:
185
186
-* Vec and all other owning pointers and collections follow the same logic as Box
187
-* Cell and all other interior mutability types follow the same logic as UnsafeCell
+* `Vec` and all other owning pointers and collections follow the same logic as `Box`
+* `Cell` and all other interior mutability types follow the same logic as `UnsafeCell`
188
* `*const` follows the logic of `&T`
189
* `*mut` follows the logic of `&mut T` (or `UnsafeCell<T>`)
190
0 commit comments