@@ -5,7 +5,7 @@ r[dynamic-sized.intro]
55Most types have a fixed size that is known at compile time and implement the
66trait [ ` Sized ` ] [ sized ] . A type with a size that is known only at run-time is
77called a _ dynamically sized type_ (_ DST_ ) or, informally, an unsized type.
8- [ Slices] and [ trait objects] are two examples of <abbr title="dynamically sized
8+ [ Slices] , [ trait objects] , and [ str ] are three examples of <abbr title="dynamically sized
99types">DSTs</abbr >.
1010
1111r[ dynamic-sized.restriction]
@@ -14,7 +14,7 @@ Such types can only be used in certain cases:
1414r[ dynamic-sized.pointer-types]
1515* [ Pointer types] to <abbr title =" dynamically sized types " >DSTs</abbr > are
1616 sized but have twice the size of pointers to sized types
17- * Pointers to slices also store the number of elements of the slice.
17+ * Pointers to slices and ` str ` also store the number of elements of the slice.
1818 * Pointers to trait objects also store a pointer to a vtable.
1919
2020r[ dynamic-sized.question-sized]
@@ -38,6 +38,7 @@ r[dynamic-sized.struct-field]
3838
3939[ sized ] : special-types-and-traits.md#sized
4040[ Slices ] : types/slice.md
41+ [ str ] : types/textual.md
4142[ trait objects ] : types/trait-object.md
4243[ Pointer types ] : types/pointer.md
4344[ Variables ] : variables.md
0 commit comments